Skip to content

Commit b063d35

Browse files
committedJan 8, 2020
Publish v6.5.0
1 parent 97ff95b commit b063d35

File tree

4 files changed

+189
-31
lines changed

4 files changed

+189
-31
lines changed
 

‎HISTORY.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# History
22

33

4+
# 2020-01-08, version 6.5.0
5+
6+
- Implemented `baseName` option for `createUnit`, see #1707.
7+
Thanks @ericman314.
8+
9+
410
# 2020-01-06, version 6.4.0
511

612
- Extended function `dimension` with support for n-dimensional points.

‎package-lock.json

+177-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mathjs",
3-
"version": "6.4.0",
3+
"version": "6.5.0",
44
"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.",
55
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
66
"contributors": [
@@ -148,14 +148,14 @@
148148
"jsep": "0.3.4",
149149
"karma": "4.4.1",
150150
"karma-browserstack-launcher": "1.5.1",
151-
"karma-firefox-launcher": "1.2.0",
151+
"karma-firefox-launcher": "1.3.0",
152152
"karma-mocha": "1.3.0",
153153
"karma-mocha-reporter": "2.2.5",
154154
"karma-webpack": "4.0.2",
155155
"math-expression-evaluator": "1.2.17",
156156
"mkdirp": "0.5.1",
157-
"mocha": "6.2.2",
158-
"ndarray": "1.0.18",
157+
"mocha": "7.0.0",
158+
"ndarray": "1.0.19",
159159
"ndarray-determinant": "1.0.0",
160160
"ndarray-gemm": "1.0.0",
161161
"ndarray-ops": "1.2.2",
@@ -165,7 +165,7 @@
165165
"pad-right": "0.2.2",
166166
"standard": "14.3.1",
167167
"sylvester": "0.0.21",
168-
"uglify-js": "3.7.3",
168+
"uglify-js": "3.7.4",
169169
"underscore": "1.9.2",
170170
"webpack": "4.41.5",
171171
"zeros": "1.0.0"

‎src/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const version = '6.4.0'
1+
export const version = '6.5.0'
22
// Note: This file is automatically generated when building math.js.
33
// Changes made in this file will be overwritten.

0 commit comments

Comments
 (0)
Please sign in to comment.