diff --git a/CHANGELOG.md b/CHANGELOG.md index ad053126..a7a5bf1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ### Next +### 2.3.0 + - Bump `lodash.template` to 4.5.0. Thanks @BenjaminVanRyseghem - Fix TypeScript return type definition of `Format.currencySymbol`. Thanks @jarnovanleeuwen - Fix #359: Add Bytes I18N possibility + French translation. Thanks @T0nio diff --git a/bower.json b/bower.json index 26a93727..19c9baf9 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.2.0", + "version": "2.3.0", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/component.json b/component.json index 323be11a..26a93727 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.1.2", + "version": "2.2.0", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/package-lock.json b/package-lock.json index 707e1e4c..a3ecb121 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "numbro", - "version": "2.2.0", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 96c3f41b..7c6a2d61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "numbro", - "version": "2.2.0", + "version": "2.3.0", "description": "Format and manipulate numbers.", "homepage": "http://numbrojs.com", "author": { diff --git a/src/numbro.js b/src/numbro.js index ce7501dd..de6d5596 100644 --- a/src/numbro.js +++ b/src/numbro.js @@ -20,7 +20,7 @@ * SOFTWARE. */ -const VERSION = "2.1.2"; +const VERSION = "2.3.0"; const globalState = require("./globalState"); const validator = require("./validating");