diff --git a/CHANGELOG.md b/CHANGELOG.md index 49659555..8230084c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ### Next +### 2.3.5 + +- Fix broken release. Thanks @BenjaminVanRyseghem + ### 2.3.4 - Fix providedFormat pollution. Thanks @BenjaminVanRyseghem diff --git a/bower.json b/bower.json index 999982a3..c8af78cb 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.3.4", + "version": "2.3.5", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/component.json b/component.json index 999982a3..c8af78cb 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.3.4", + "version": "2.3.5", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/package-lock.json b/package-lock.json index 1816ac07..e1ad8a35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "numbro", - "version": "2.3.4", + "version": "2.3.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f6b9518a..575fd678 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "numbro", - "version": "2.3.4", + "version": "2.3.5", "description": "Format and manipulate numbers.", "homepage": "http://numbrojs.com", "author": { diff --git a/src/numbro.js b/src/numbro.js index 17090125..dffb2b67 100644 --- a/src/numbro.js +++ b/src/numbro.js @@ -20,7 +20,7 @@ * SOFTWARE. */ -const VERSION = "2.3.4"; +const VERSION = "2.3.5"; const globalState = require("./globalState"); const validator = require("./validating");