Skip to content

Commit

Permalink
v10.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl committed Aug 14, 2022
1 parent f03f868 commit f8b93e0
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
language: node_js
node_js:
- "node"
- "18"
- "17"
- "16"
- "15"
- "14"
- "13"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 10.4.0
* 14/08/2022
* #201 Add `exports` field to *package.json*.
* #203 Preserve license comment after bundling.
* #198 Use type predicate on `isDecimal`.

#### 10.3.1
* 25/06/2021
* Remove minified versions. Refresh *README*.
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT Licence.

Copyright (c) 2021 Michael Mclaughlin
Copyright (c) 2022 Michael Mclaughlin

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
4 changes: 2 additions & 2 deletions decimal.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@


/*!
* decimal.js v10.3.1
* decimal.js v10.4.0
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <[email protected]>
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>
* MIT Licence
*/

Expand Down
4 changes: 2 additions & 2 deletions decimal.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* decimal.js v10.3.1
* decimal.js v10.4.0
* An arbitrary-precision Decimal type for JavaScript.
* https://github.com/MikeMcl/decimal.js
* Copyright (c) 2021 Michael Mclaughlin <[email protected]>
* Copyright (c) 2022 Michael Mclaughlin <[email protected]>
* MIT Licence
*/

Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "10.3.1",
"version": "10.4.0",
"keywords": [
"arbitrary",
"precision",
Expand All @@ -25,12 +25,13 @@
"browser": "decimal.js",
"exports": {
".": {
"import": {
"types": "./decimal.d.ts",
"default": "./decimal.mjs"
},
"types": "./decimal.d.ts",
"import": "./decimal.mjs",
"require": "./decimal.js"
}
},
"./decimal.mjs": "./decimal.mjs",
"./decimal.js": "./decimal.js",
"./package.json": "./package.json"
},
"author": {
"name": "Michael Mclaughlin",
Expand Down

0 comments on commit f8b93e0

Please sign in to comment.