Skip to content

Commit

Permalink
Publish v6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jan 8, 2020
1 parent 97ff95b commit b063d35
Show file tree
Hide file tree
Showing 4 changed files with 189 additions and 31 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# History


# 2020-01-08, version 6.5.0

- Implemented `baseName` option for `createUnit`, see #1707.
Thanks @ericman314.


# 2020-01-06, version 6.4.0

- Extended function `dimension` with support for n-dimensional points.
Expand Down
202 changes: 177 additions & 25 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "6.4.0",
"version": "6.5.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 <[email protected]> (https://github.com/josdejong)",
"contributors": [
Expand Down Expand Up @@ -148,14 +148,14 @@
"jsep": "0.3.4",
"karma": "4.4.1",
"karma-browserstack-launcher": "1.5.1",
"karma-firefox-launcher": "1.2.0",
"karma-firefox-launcher": "1.3.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-webpack": "4.0.2",
"math-expression-evaluator": "1.2.17",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"ndarray": "1.0.18",
"mocha": "7.0.0",
"ndarray": "1.0.19",
"ndarray-determinant": "1.0.0",
"ndarray-gemm": "1.0.0",
"ndarray-ops": "1.2.2",
Expand All @@ -165,7 +165,7 @@
"pad-right": "0.2.2",
"standard": "14.3.1",
"sylvester": "0.0.21",
"uglify-js": "3.7.3",
"uglify-js": "3.7.4",
"underscore": "1.9.2",
"webpack": "4.41.5",
"zeros": "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const version = '6.4.0'
export const version = '6.5.0'
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.

0 comments on commit b063d35

Please sign in to comment.