Skip to content

Commit

Permalink
Release. Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bryaningl3 committed Oct 3, 2024
1 parent e1534e3 commit 28476c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barchart/common-js",
"version": "4.42.1",
"version": "4.43.0",
"description": "Library of common JavaScript utilities",
"author": {
"name": "Bryan Ingle",
Expand Down
12 changes: 12 additions & 0 deletions test/SpecRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -2284,6 +2284,17 @@ module.exports = (() => {
return cad;
}

/**
* The Swiss Franc.
*
* @public
* @static
* @returns {Currency}
*/
static get CHF() {
return chf;
}

/**
* The Euro.
*
Expand Down Expand Up @@ -2355,6 +2366,7 @@ module.exports = (() => {
}
const aud = new Currency('AUD', 'Australian Dollar', 2, 'AUD$');
const cad = new Currency('CAD', 'Canadian Dollar', 2, 'CAD$');
const chf = new Currency('CHF', 'Swiss Franc', 2, 'CHF');
const eur = new Currency('EUR', 'Euro', 2, 'EUR');
const gbp = new Currency('GBP', 'British Pound', 2, 'GBP');
const gbx = new Currency('GBX', 'British Penny', 2, 'GBX');
Expand Down

0 comments on commit 28476c6

Please sign in to comment.