Skip to content

Commit

Permalink
Add a caret to dependencies (like) ^1.2.3) to allow downstream upda…
Browse files Browse the repository at this point in the history
…tes without having to await a new release of mathjs
  • Loading branch information
josdejong committed Feb 1, 2020
1 parent 8412244 commit 506d67d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
`fromJSON`.
- Fixed `DenseMatrix.map` copying the size and datatype from the original
matrix instead of checking the returned dimensions and type of the callback.
- Add a caret to dependencies (like) `^1.2.3`) to allow downstream updates
without having to await a new release of mathjs.


# 2020-01-08, version 6.5.0
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@
"unit"
],
"dependencies": {
"complex.js": "2.0.11",
"decimal.js": "10.2.0",
"escape-latex": "1.2.0",
"fraction.js": "4.0.12",
"javascript-natural-sort": "0.7.1",
"seed-random": "2.2.0",
"tiny-emitter": "2.1.0",
"typed-function": "1.1.1"
"complex.js": "^2.0.11",
"decimal.js": "^10.2.0",
"escape-latex": "^1.2.0",
"fraction.js": "^4.0.12",
"javascript-natural-sort": "^0.7.1",
"seed-random": "^2.2.0",
"tiny-emitter": "^2.1.0",
"typed-function": "^1.1.1"
},
"devDependencies": {
"@babel/core": "7.8.4",
Expand Down

0 comments on commit 506d67d

Please sign in to comment.