Released version 1.2.0

This commit is contained in:
jos 2014-12-25 20:07:36 +01:00
parent e3b74d4ff8
commit 8e16cef441
9 changed files with 495 additions and 414 deletions

View File

@ -1,7 +1,7 @@
# History
## not yet released, version 1.2.0
## 2014-12-25, version 1.2.0
- Support for bitwise operations `bitAnd`, `bitNot`, `bitOr`, `bitXor`,
`leftShift`, `rightArithShift`, and `rightLogShift`. Thanks @BigFav.

View File

@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "1.1.2-SNAPSHOT",
"version": "1.2.0",
"main": "./dist/math.min.js",
"ignore": [
"coverage",

View File

@ -2,7 +2,7 @@
"name": "mathjs",
"repo": "josdejong/mathjs",
"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.",
"version": "1.1.2-SNAPSHOT",
"version": "1.2.0",
"main": "dist/math.min.js",
"keywords": [
"math",

875
dist/math.js vendored

File diff suppressed because it is too large Load Diff

2
dist/math.map vendored

File diff suppressed because one or more lines are too long

18
dist/math.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -41,8 +41,8 @@ print(str); // "0.6666666666666666"
// a chain has a function .valueOf(), which returns the value hold by the chain.
// This allows using it in regular operations. The function valueOf() acts the
// same as function done().
print(chain.valueOf()); // 0.66667
print(chain + 2); // 2.66667
print(chain.valueOf()); // 0.66667
print(chain + 2); // 2.66667
// the function subset can be used to get or replace sub matrices
var array = [[1, 2], [3, 4]];

View File

@ -1,3 +1,3 @@
module.exports = '1.1.2-SNAPSHOT';
module.exports = '1.2.0';
// Note: This file is automatically generated when building math.js.
// Changes made in this file will be overwritten.

View File

@ -1,6 +1,6 @@
{
"name": "mathjs",
"version": "1.1.2-SNAPSHOT",
"version": "1.2.0",
"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": [