FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Released version 0.18.0 · JavaScriptIOT/mathjs@fe8d832 · GitHub

Commit fe8d832

Browse files
committed
Released version 0.18.0
1 parent 8226e52 commit fe8d832

9 files changed

Lines changed: 5088 additions & 4874 deletions

File tree

‎HISTORY.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
https://github.com/josdejong/mathjs
33

44

5-
## not yet released, version 0.18.0
5+
## 2014-01-18, version 0.18.0
66

77
- Changed matrix index notation of expression parser from round brackets to
88
square brackets, for example `A[1, 1:3]` instead of `A(1, 1:3)`.

‎Jakefile.js‎

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ var INDEX = './index.js',
1313
HEADER = './lib/header.js',
1414
DIST = './dist',
1515
MATHJS = DIST + '/math.js',
16-
MATHJS_MIN = DIST + '/math.min.js';
16+
MATHJS_MIN = DIST + '/math.min.js',
17+
MATHJS_MAP = MATHJS_MIN + '.map';
1718

1819
// register start time
1920
var start = +new Date();
@@ -70,6 +71,9 @@ task('minify', ['bundle'], function () {
7071
var result = util.minify({
7172
src: MATHJS,
7273
dest: MATHJS_MIN,
74+
options: {
75+
outSourceMap: MATHJS_MAP // TODO: map doesn't work
76+
},
7377
header: util.read(HEADER)
7478
});
7579
updateVersion(MATHJS_MIN);

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ To see the coverage results, open the generated report in your browser:
111111

112112
## License
113113

114-
Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com>
114+
Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com>
115115

116116
Licensed under the Apache License, Version 2.0 (the "License");
117117
you may not use this file except in compliance with the License.

‎bin/cli.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* cat script.txt | mathjs > results.txt Run input stream, output to file
2525
*
2626
* @license
27-
* Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com>
27+
* Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com>
2828
*
2929
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
3030
* use this file except in compliance with the License. You may obtain a copy

‎bower.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mathjs",
3-
"version": "0.18.0-SNAPSHOT",
3+
"version": "0.18.0",
44
"main": "./dist/math.js",
55
"ignore": [
66
"coverage",

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL