diff --git a/CHANGELOG.md b/CHANGELOG.md index d8f6e1d2d..1165da998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [2.0.0-alpha.13](https://github.com/dinerojs/dinero.js/compare/v2.0.0-alpha.12...v2.0.0-alpha.13) (2022-12-19) + + +### Bug Fixes + +* **toDecimal:** preserve negative sign for leading zeros ([#693](https://github.com/dinerojs/dinero.js/issues/693)) ([e6f290d](https://github.com/dinerojs/dinero.js/commit/e6f290dfd754826f20eeafff6c3a505ee19bf05f)), closes [#692](https://github.com/dinerojs/dinero.js/issues/692) + + + # [2.0.0-alpha.12](https://github.com/dinerojs/dinero.js/compare/v2.0.0-alpha.11...v2.0.0-alpha.12) (2022-12-09) diff --git a/examples/cart-react/package.json b/examples/cart-react/package.json index b04b02f7c..a187f3696 100644 --- a/examples/cart-react/package.json +++ b/examples/cart-react/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/example-cart-react", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "scripts": { "build:clean": "rimraf ./dist", "dev": "vite", @@ -8,9 +8,9 @@ "serve": "vite preview" }, "dependencies": { - "@dinero.js/currencies": "2.0.0-alpha.12", + "@dinero.js/currencies": "2.0.0-alpha.13", "classnames": "2.2.6", - "dinero.js": "2.0.0-alpha.12", + "dinero.js": "2.0.0-alpha.13", "react": "18.2.0", "react-dom": "18.2.0" }, diff --git a/examples/cart-vue/package.json b/examples/cart-vue/package.json index 8bcf8bf26..c3464858b 100644 --- a/examples/cart-vue/package.json +++ b/examples/cart-vue/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/example-cart-vue", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "scripts": { "build:clean": "rimraf ./dist", "dev": "vite", @@ -8,8 +8,8 @@ "serve": "vite preview" }, "dependencies": { - "@dinero.js/currencies": "2.0.0-alpha.12", - "dinero.js": "2.0.0-alpha.12", + "@dinero.js/currencies": "2.0.0-alpha.13", + "dinero.js": "2.0.0-alpha.13", "vue": "3.0.5" }, "devDependencies": { diff --git a/examples/pricing-react/package.json b/examples/pricing-react/package.json index 89b69544e..f58410a18 100644 --- a/examples/pricing-react/package.json +++ b/examples/pricing-react/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/example-pricing-react", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "scripts": { "build:clean": "rimraf ./dist", "dev": "vite", @@ -8,10 +8,10 @@ "serve": "vite preview" }, "dependencies": { - "@dinero.js/currencies": "2.0.0-alpha.12", + "@dinero.js/currencies": "2.0.0-alpha.13", "@heroicons/react": "1.0.2", "classnames": "2.3.1", - "dinero.js": "2.0.0-alpha.12", + "dinero.js": "2.0.0-alpha.13", "react": "18.2.0", "react-dom": "18.2.0", "react-slider": "1.3.1" diff --git a/examples/starter/package.json b/examples/starter/package.json index 577e20af1..57617e27d 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/example-starter", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "scripts": { "build:clean": "rimraf ./dist", "dev": "vite", @@ -11,7 +11,7 @@ "vite": "^2.4.2" }, "dependencies": { - "@dinero.js/currencies": "2.0.0-alpha.12", - "dinero.js": "2.0.0-alpha.12" + "@dinero.js/currencies": "2.0.0-alpha.13", + "dinero.js": "2.0.0-alpha.13" } } diff --git a/lerna.json b/lerna.json index d87bc188a..c5f2d8772 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*", "examples/*"], - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "npmClient": "yarn", "useWorkspaces": true } diff --git a/packages/calculator-bigint/package.json b/packages/calculator-bigint/package.json index e5ead925c..52814ded0 100644 --- a/packages/calculator-bigint/package.json +++ b/packages/calculator-bigint/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/calculator-bigint", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "description": "Bigint calculator implementation for Dinero.js", "keywords": [ "money", @@ -44,6 +44,6 @@ "watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\"" }, "dependencies": { - "@dinero.js/core": "2.0.0-alpha.12" + "@dinero.js/core": "2.0.0-alpha.13" } } diff --git a/packages/calculator-number/package.json b/packages/calculator-number/package.json index 8bcfe56a7..a5835e9c6 100644 --- a/packages/calculator-number/package.json +++ b/packages/calculator-number/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/calculator-number", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "description": "Number calculator implementation for Dinero.js", "keywords": [ "money", @@ -44,6 +44,6 @@ "watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\"" }, "dependencies": { - "@dinero.js/core": "2.0.0-alpha.12" + "@dinero.js/core": "2.0.0-alpha.13" } } diff --git a/packages/core/package.json b/packages/core/package.json index 81eeb5792..04b1ea078 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/core", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "description": "Common code between Dinero.js packages", "keywords": [ "money", @@ -42,6 +42,6 @@ "watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\"" }, "dependencies": { - "@dinero.js/currencies": "2.0.0-alpha.12" + "@dinero.js/currencies": "2.0.0-alpha.13" } } diff --git a/packages/currencies/package.json b/packages/currencies/package.json index a1690b083..de369a892 100644 --- a/packages/currencies/package.json +++ b/packages/currencies/package.json @@ -1,6 +1,6 @@ { "name": "@dinero.js/currencies", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "description": "Common currency implementations for Dinero.js", "keywords": [ "money", diff --git a/packages/dinero.js/package.json b/packages/dinero.js/package.json index 260ebea14..981aa6bd3 100644 --- a/packages/dinero.js/package.json +++ b/packages/dinero.js/package.json @@ -1,6 +1,6 @@ { "name": "dinero.js", - "version": "2.0.0-alpha.12", + "version": "2.0.0-alpha.13", "description": "Create, calculate, and format money in JavaScript and TypeScript", "keywords": [ "money", @@ -44,11 +44,11 @@ "watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\"" }, "dependencies": { - "@dinero.js/calculator-number": "2.0.0-alpha.12", - "@dinero.js/core": "2.0.0-alpha.12", - "@dinero.js/currencies": "2.0.0-alpha.12" + "@dinero.js/calculator-number": "2.0.0-alpha.13", + "@dinero.js/core": "2.0.0-alpha.13", + "@dinero.js/currencies": "2.0.0-alpha.13" }, "devDependencies": { - "@dinero.js/calculator-bigint": "2.0.0-alpha.12" + "@dinero.js/calculator-bigint": "2.0.0-alpha.13" } }