Skip to content

Commit

Permalink
Fix #2169: mathjs requesting @babel/runtime dependency. Publish v9.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Apr 12, 2021
1 parent e6e6002 commit 1757afb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 80 deletions.
3 changes: 1 addition & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
["@babel/preset-env"]
],
"plugins": [
"@babel/plugin-transform-object-assign",
"@babel/transform-runtime"
"@babel/plugin-transform-object-assign"
],
"ignore": [
"lib/**/*.js"
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# History

# 2021-04-12, version 9.3.2

- Fix #2169: mathjs requesting `@babel/runtime` dependency.
Regression introduced in `v9.3.1`.


# 2021-04-10, version 9.3.1

- Fix #2133: strongly improved the performance of `isPrime`, see #2139.
Expand Down
76 changes: 1 addition & 75 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "9.3.1",
"version": "9.3.2",
"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)",
"homepage": "https://mathjs.org",
Expand Down Expand Up @@ -37,7 +37,6 @@
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/plugin-transform-object-assign": "7.12.13",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.13.12",
"@babel/register": "7.13.14",
"babel-loader": "8.2.2",
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 = '9.3.1'
export const version = '9.3.2'
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.

0 comments on commit 1757afb

Please sign in to comment.