Skip to content

Commit

Permalink
chore: release v2.0.0-alpha.14 (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahdayan committed Feb 27, 2023
1 parent fef2806 commit 1320a09
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 34 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# [2.0.0-alpha.14](https://github.com/dinerojs/dinero.js/compare/v2.0.0-alpha.13...v2.0.0-alpha.14) (2023-02-27)


### Bug Fixes

* **isPositive:** return `false` with zero ([#728](https://github.com/dinerojs/dinero.js/issues/728)) ([140fe68](https://github.com/dinerojs/dinero.js/commit/140fe68ba516ce47a12a01a06a6425c7df5bd455))
* **up, down, halfUp:** fix handling of numbers close to 0 and rounding of integer results ([#711](https://github.com/dinerojs/dinero.js/issues/711)) ([6b30aa0](https://github.com/dinerojs/dinero.js/commit/6b30aa09aa5d887cd00170d2659d0bf044081d93)), closes [#710](https://github.com/dinerojs/dinero.js/issues/710) [#713](https://github.com/dinerojs/dinero.js/issues/713)



# [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)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dinero.js/monorepo",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"private": true,
"license": "MIT",
"workspaces": [
Expand Down
8 changes: 3 additions & 5 deletions packages/calculator-bigint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dinero.js/calculator-bigint",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"description": "Bigint calculator implementation for Dinero.js",
"keywords": [
"money",
Expand Down Expand Up @@ -29,9 +29,7 @@
"module": "dist/esm/index.js",
"source": "src/index.ts",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"files": ["dist/"],
"scripts": {
"build:clean": "rimraf ./{dist,temp}",
"build:esm": "babel src --root-mode upward --extensions '.ts' --out-dir dist/esm --ignore '**/*/__tests__/'",
Expand All @@ -42,6 +40,6 @@
"test": "node ../../scripts/test.mjs --projects=./packages/calculator-bigint"
},
"dependencies": {
"@dinero.js/core": "2.0.0-alpha.13"
"@dinero.js/core": "2.0.0-alpha.14"
}
}
8 changes: 3 additions & 5 deletions packages/calculator-number/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dinero.js/calculator-number",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"description": "Number calculator implementation for Dinero.js",
"keywords": [
"money",
Expand Down Expand Up @@ -29,9 +29,7 @@
"module": "dist/esm/index.js",
"source": "src/index.ts",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"files": ["dist/"],
"scripts": {
"build:clean": "rimraf ./{dist,temp}",
"build:esm": "babel src --root-mode upward --extensions '.ts' --out-dir dist/esm --ignore '**/*/__tests__/'",
Expand All @@ -42,6 +40,6 @@
"test": "node ../../scripts/test.mjs --projects=./packages/calculator-number"
},
"dependencies": {
"@dinero.js/core": "2.0.0-alpha.13"
"@dinero.js/core": "2.0.0-alpha.14"
}
}
15 changes: 4 additions & 11 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"name": "@dinero.js/core",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"description": "Common code between Dinero.js packages",
"keywords": [
"money",
"monetary",
"amount",
"immutable"
],
"keywords": ["money", "monetary", "amount", "immutable"],
"homepage": "https://v2.dinerojs.com",
"bugs": "https://github.com/dinerojs/dinero.js/issues",
"repository": {
Expand All @@ -27,9 +22,7 @@
"module": "dist/esm/index.js",
"source": "src/index.ts",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"files": ["dist/"],
"scripts": {
"build:clean": "rimraf ./{dist,temp}",
"build:esm": "babel src --root-mode upward --extensions '.ts' --out-dir dist/esm --ignore '**/*/__tests__/'",
Expand All @@ -40,6 +33,6 @@
"test": "node ../../scripts/test.mjs --projects=./packages/core"
},
"dependencies": {
"@dinero.js/currencies": "2.0.0-alpha.13"
"@dinero.js/currencies": "2.0.0-alpha.14"
}
}
2 changes: 1 addition & 1 deletion packages/currencies/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dinero.js/currencies",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"description": "Common currency implementations for Dinero.js",
"keywords": [
"money",
Expand Down
14 changes: 6 additions & 8 deletions packages/dinero.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dinero.js",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"description": "Create, calculate, and format money in JavaScript and TypeScript",
"keywords": [
"money",
Expand Down Expand Up @@ -29,9 +29,7 @@
"module": "dist/esm/index.js",
"source": "src/index.ts",
"types": "dist/esm/index.d.ts",
"files": [
"dist/"
],
"files": ["dist/"],
"scripts": {
"build:clean": "rimraf ./{dist,temp}",
"build:esm": "babel src --root-mode upward --extensions '.ts' --out-dir dist/esm --ignore '**/*/__tests__/'",
Expand All @@ -42,11 +40,11 @@
"test": "node ../../scripts/test.mjs --projects=./packages/dinero.js"
},
"dependencies": {
"@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"
"@dinero.js/calculator-number": "2.0.0-alpha.14",
"@dinero.js/core": "2.0.0-alpha.14",
"@dinero.js/currencies": "2.0.0-alpha.14"
},
"devDependencies": {
"@dinero.js/calculator-bigint": "2.0.0-alpha.13"
"@dinero.js/calculator-bigint": "2.0.0-alpha.14"
}
}
6 changes: 3 additions & 3 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dinero.js/website",
"version": "2.0.0-alpha.13",
"version": "2.0.0-alpha.14",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,11 +9,11 @@
"lint": "next lint"
},
"dependencies": {
"@dinero.js/currencies": "2.0.0-alpha.13",
"@dinero.js/currencies": "2.0.0-alpha.14",
"@docsearch/css": "3.2.1",
"@docsearch/react": "3.3.0",
"classnames": "2.3.2",
"dinero.js": "2.0.0-alpha.13",
"dinero.js": "2.0.0-alpha.14",
"fathom-client": "3.5.0",
"github-slugger": "1.4.0",
"next": "13.0.2",
Expand Down
28 changes: 28 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1245,6 +1245,25 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"

"@dinero.js/calculator-number@2.0.0-alpha.13":
version "2.0.0-alpha.13"
resolved "https://registry.yarnpkg.com/@dinero.js/calculator-number/-/calculator-number-2.0.0-alpha.13.tgz#d4fbadf910f62fb93691590ae821c4d01f597df8"
integrity sha512-Mo/0FUVFq4dVb/RfBIASUxPFbQbkHYC0VBe36DgWfbbhwG6K6ONuzTLBU5W6LdrMpB7D/CxgZISdQ0pyZKwg9w==
dependencies:
"@dinero.js/core" "2.0.0-alpha.13"

"@dinero.js/core@2.0.0-alpha.13":
version "2.0.0-alpha.13"
resolved "https://registry.yarnpkg.com/@dinero.js/core/-/core-2.0.0-alpha.13.tgz#784c845b918edc8746a4e07128df7168358e7139"
integrity sha512-RLZz8WmYe1ehqD2YtTpzCzdk0Hqf6oaAVmRlULLkua6vuEVEXjPQEhuyTMLHcS6/Gppy9nuEw8mpSNvU+Sy8QQ==
dependencies:
"@dinero.js/currencies" "2.0.0-alpha.13"

"@dinero.js/currencies@2.0.0-alpha.13":
version "2.0.0-alpha.13"
resolved "https://registry.yarnpkg.com/@dinero.js/currencies/-/currencies-2.0.0-alpha.13.tgz#8e9871a9706d4cdd13b760052a590670944effd8"
integrity sha512-vEfDara+xAqOrLww80FyFVw4usWcCsR4HwhaoCvwIzB5UdsLPDeUviAGFi8CoWjtLCR44iIeOHdn9jDr7Jj+TQ==

"@docsearch/css@3.2.1":
version "3.2.1"
resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.2.1.tgz#c05d7818b0e43b42f9efa2d82a11c36606b37b27"
Expand Down Expand Up @@ -4182,6 +4201,15 @@ diff@^4.0.1:
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==

dinero.js@2.0.0-alpha.13:
version "2.0.0-alpha.13"
resolved "https://registry.yarnpkg.com/dinero.js/-/dinero.js-2.0.0-alpha.13.tgz#4f4faeb9abae0334dbc535ae1b2e2b8eb44bd86c"
integrity sha512-xuBgE/3/67SXOW/UKjmaRd/YJQkUSlYS+6DvfglFg1Mbfn2K7cp+WQcgU76CLJpJPkJABgILsPjw1Om9OJ5puA==
dependencies:
"@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"

dir-glob@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
Expand Down

1 comment on commit 1320a09

@vercel
Copy link

@vercel vercel bot commented on 1320a09 Feb 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

dinerojs – ./

dinerojs-git-main-dinerojs.vercel.app
dinerojs-dinerojs.vercel.app
v2.dinerojs.com

Please sign in to comment.