[go: up one dir, main page]

Skip to content

Commit

Permalink
Released version 0.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jan 18, 2014
1 parent 8226e52 commit fe8d832
Show file tree
Hide file tree
Showing 9 changed files with 5,088 additions and 4,874 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
https://github.com/josdejong/mathjs


## not yet released, version 0.18.0
## 2014-01-18, version 0.18.0

- Changed matrix index notation of expression parser from round brackets to
square brackets, for example `A[1, 1:3]` instead of `A(1, 1:3)`.
Expand Down
6 changes: 5 additions & 1 deletion Jakefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ var INDEX = './index.js',
HEADER = './lib/header.js',
DIST = './dist',
MATHJS = DIST + '/math.js',
MATHJS_MIN = DIST + '/math.min.js';
MATHJS_MIN = DIST + '/math.min.js',
MATHJS_MAP = MATHJS_MIN + '.map';

// register start time
var start = +new Date();
Expand Down Expand Up @@ -70,6 +71,9 @@ task('minify', ['bundle'], function () {
var result = util.minify({
src: MATHJS,
dest: MATHJS_MIN,
options: {
outSourceMap: MATHJS_MAP // TODO: map doesn't work
},
header: util.read(HEADER)
});
updateVersion(MATHJS_MIN);
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ To see the coverage results, open the generated report in your browser:

## License

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

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* cat script.txt | mathjs > results.txt Run input stream, output to file
*
* @license
* Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com>
* Copyright (C) 2013-2014 Jos de Jong <wjosdejong@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
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": "0.18.0-SNAPSHOT",
"version": "0.18.0",
"main": "./dist/math.js",
"ignore": [
"coverage",
Expand Down
Loading

0 comments on commit fe8d832

Please sign in to comment.