| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,8 +1,10 @@ | |||
| 1 | 1 | # History | |
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | - ## not yet released, version 1.2.1-SNAPSHOT | ||
| 4 | + ## 2015-02-09, version 1.3.0 | ||
| 5 | 5 | ||
| 6 | + - Implemented BigNumber implementations of most trigonometric functions: `sin`, | ||
| 7 | + `cos`, `tan`, `asin`, `acos`, `atan`, `cosh`, `sinh`, `tanh`. Thanks @BigFav. | ||
| 6 | 8 | - Implemented function `trace`. Thanks @pcorey. | |
| 7 | 9 | - Faster loading of BigNumber configuration with a high precision by lazy | |
| 8 | 10 | loading constants like `pi` and `e`. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | math.js | |
| 2 | 2 | https://github.com/josdejong/mathjs | |
| 3 | 3 | ||
| 4 | - Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com> | ||
| 4 | + Copyright (C) 2013-2015 Jos de Jong <wjosdejong@gmail.com> | ||
| 5 | 5 | ||
| 6 | 6 | Licensed under the Apache License, Version 2.0 (the "License"); | |
| 7 | 7 | you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -24,7 +24,7 @@ | |||
| 24 | 24 | * cat script.txt | mathjs > results.txt Run input stream, output to file | |
| 25 | 25 | * | |
| 26 | 26 | * @license | |
| 27 | - * Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com> | ||
| 27 | + * Copyright (C) 2013-2015 Jos de Jong <wjosdejong@gmail.com> | ||
| 28 | 28 | * | |
| 29 | 29 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
| 30 | 30 | * use this file except in compliance with the License. You may obtain a copy | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "name": "mathjs", | |
| 3 | - "version": "1.2.1-SNAPSHOT", | ||
| 3 | + "version": "1.3.0", | ||
| 4 | 4 | "main": "./dist/math.min.js", | |
| 5 | 5 | "ignore": [ | |
| 6 | 6 | "coverage", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | "name": "mathjs", | |
| 3 | 3 | "repo": "josdejong/mathjs", | |
| 4 | 4 | "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.", | |
| 5 | - "version": "1.2.1-SNAPSHOT", | ||
| 5 | + "version": "1.3.0", | ||
| 6 | 6 | "main": "dist/math.min.js", | |
| 7 | 7 | "keywords": [ | |
| 8 | 8 | "math", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments