Skip to content

Commit

Permalink
Publish v7.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Oct 7, 2020
1 parent 642db06 commit 7575156
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 25 deletions.
5 changes: 3 additions & 2 deletions HISTORY.md
@@ -1,15 +1,16 @@
# History

# not yet published, version 7.4.0
# 2020-10-07, version 7.4.0

- Implemented support for passing a precision in functions `ceil`, `floor`,
and `fix`, similar to `round`, see #1967, #1901. Thanks @rnd-debug.
- Implemented function `rotationMatrix`, see #1160, #1984. Thanks @rnd-debug.
- Implement a clear error message when using `sqrtm` with a matrix having
more than two dimensions. Thanks @KonradLinkowski.
- Fixed #1974: function `pickRandom` now allows randomly picking elements
from matrices with 2 or more dimensions instead of only from a vector.
Thanks @KonradLinkowski.
- Implemented function `rotationMatrix`, see #1160, #1984. Thanks @rnd-debug.
- Update dependency `decimal.js` to `10.2.1`.


# 2020-09-26, version 7.3.0
Expand Down
66 changes: 48 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "7.3.0",
"version": "7.4.0",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types like numbers, big numbers, complex numbers, fractions, units, and matrices.",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"homepage": "https://mathjs.org",
Expand All @@ -26,7 +26,7 @@
],
"dependencies": {
"complex.js": "^2.0.11",
"decimal.js": "^10.2.0",
"decimal.js": "^10.2.1",
"escape-latex": "^1.2.0",
"fraction.js": "^4.0.12",
"javascript-natural-sort": "^0.7.1",
Expand All @@ -41,7 +41,7 @@
"@babel/register": "7.11.5",
"babel-loader": "8.1.0",
"benchmark": "2.1.4",
"codecov": "3.7.2",
"codecov": "3.8.0",
"del": "6.0.0",
"expr-eval": "2.0.2",
"fancy-log": "1.3.3",
Expand Down Expand Up @@ -71,7 +71,7 @@
"pad-right": "0.2.2",
"standard": "14.3.4",
"sylvester": "0.0.21",
"uglify-js": "3.10.4",
"uglify-js": "3.11.1",
"webpack": "4.44.2",
"zeros": "1.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
@@ -1,3 +1,3 @@
export const version = '7.3.0'
export const version = '7.4.0'
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.

0 comments on commit 7575156

Please sign in to comment.