Skip to content

Commit

Permalink
Released v3.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jan 17, 2018
1 parent 3af55ed commit 16184e9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# History

## 2018-01-17, version 3.20.1

- Fixed #1018: `simplifyCore` failing in some cases with parentheses.
Thanks @firepick1.


## 2018-01-14, version 3.20.0

- Implement support for 3 or more arguments for operators `+` and `*` in
Expand Down
9 changes: 5 additions & 4 deletions dist/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* It features real and complex numbers, units, matrices, a large set of
* mathematical functions, and a flexible expression parser.
*
* @version 3.20.0
* @date 2018-01-14
* @version 3.20.1
* @date 2018-01-17
*
* @license
* Copyright (C) 2013-2018 Jos de Jong <wjosdejong@gmail.com>
Expand Down Expand Up @@ -21413,6 +21413,7 @@ function factory(type, config, load, typed, math) {
var ConstantNode = math.expression.node.ConstantNode;
var OperatorNode = math.expression.node.OperatorNode;
var FunctionNode = math.expression.node.FunctionNode;
var ParenthesisNode = math.expression.node.ParenthesisNode;

var node0 = new ConstantNode(0);
var node1 = new ConstantNode(1);
Expand All @@ -21425,7 +21426,7 @@ function factory(type, config, load, typed, math) {
*
* Syntax:
*
* simplify.simpifyCore(expr)
* simplify.simplifyCore(expr)
*
* Examples:
*
Expand Down Expand Up @@ -41213,7 +41214,7 @@ exports.math = true; // request access to the math namespace
/* 193 */
/***/ (function(module, exports) {

module.exports = '3.20.0';
module.exports = '3.20.1';
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.

Expand Down
8 changes: 4 additions & 4 deletions dist/math.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/math.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = '3.20.0';
module.exports = '3.20.1';
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "3.20.0",
"version": "3.20.1",
"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)",
"contributors": [
Expand Down

0 comments on commit 16184e9

Please sign in to comment.