From cac205533ccdb6013a855f6aa6467acd04dae269 Mon Sep 17 00:00:00 2001 From: Benjamin Van Ryseghem Date: Thu, 16 Dec 2021 12:20:33 +0100 Subject: [PATCH] Release 2.3.6 --- CHANGELOG.md | 2 ++ bower.json | 2 +- component.json | 2 +- package.json | 2 +- src/numbro.js | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9b3d21..4f30fcaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ### Next +### 2.3.6 + - Fix spacing issue with en-GB currency. Thanks @DamienCassou - Fix #507: mantissa precision produces wrong results for certain numbers. Thanks @swissmanu diff --git a/bower.json b/bower.json index c8af78cb..9518b845 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.3.5", + "version": "2.3.6", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/component.json b/component.json index c8af78cb..9518b845 100644 --- a/component.json +++ b/component.json @@ -1,7 +1,7 @@ { "name": "numbro", "repo": "BenjaminVanRyseghem/numbro", - "version": "2.3.5", + "version": "2.3.6", "description": "Format and manipulate numbers.", "keywords": [ "numeral", diff --git a/package.json b/package.json index 33c89b54..a4944b8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "numbro", - "version": "2.3.5", + "version": "2.3.6", "description": "Format and manipulate numbers.", "homepage": "http://numbrojs.com", "author": { diff --git a/src/numbro.js b/src/numbro.js index dffb2b67..10570b52 100644 --- a/src/numbro.js +++ b/src/numbro.js @@ -20,7 +20,7 @@ * SOFTWARE. */ -const VERSION = "2.3.5"; +const VERSION = "2.3.6"; const globalState = require("./globalState"); const validator = require("./validating");