[go: up one dir, main page]

Skip to content

Commit

Permalink
Released v3.1.3 (fixed broken bundle)
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 24, 2016
1 parent 41fc3a7 commit f47b22c
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# History


## 2016-03-24, version 3.1.3

- Fix broken bundle.


## 2016-03-24, version 3.1.2

- Fix broken npm release.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "3.1.2",
"version": "3.1.3",
"main": "./dist/math.min.js",
"license": "Apache-2.0",
"ignore": [
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "3.1.2",
"version": "3.1.3",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
"repo": "josdejong/mathjs",
"main": "dist/math.min.js",
Expand Down
8 changes: 4 additions & 4 deletions dist/math.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* It features real and complex numbers, units, matrices, a large set of
* mathematical functions, and a flexible expression parser.
*
* @version 3.1.2
* @version 3.1.3
* @date 2016-03-24
*
* @license
Expand Down Expand Up @@ -11082,7 +11082,7 @@ return /******/ (function(modules) { // webpackBootstrap
**/
"mod": function(a, b) {

if (isNaN(this['n']) || isNaN(this['d'])) {
if (isNaN(this['n']) || isNaN(this['d'])) {
return new Fraction(NaN);
}

Expand Down Expand Up @@ -23737,7 +23737,7 @@ return /******/ (function(modules) { // webpackBootstrap
/* 94 */
/***/ function(module, exports) {

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

Expand Down Expand Up @@ -51349,7 +51349,7 @@ return /******/ (function(modules) { // webpackBootstrap
return new type.Complex(x, 0).asec();
},

'Complex': function (x) {
'Complex': function (x) {
return x.asec();
},

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/function/trigonometry/asec.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function factory (type, config, load, typed) {
return new type.Complex(x, 0).asec();
},

'Complex': function (x) {
'Complex': function (x) {
return x.asec();
},

Expand Down
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.1.2';
module.exports = '3.1.3';
// 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.1.2",
"version": "3.1.3",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"contributors": [
Expand Down

0 comments on commit f47b22c

Please sign in to comment.