Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RaumZeit committed Jun 23, 2018
1 parent 7330a2b commit a9e0890
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### v1.3.0
- Refactor all implementations
- Add **Quad-Tree** lookup data structure for faster retrieval of relevant grid cells
- Allow for array input to specify limits
- modularize sources, move them into src/ director, and use **ES2015 modules** scheme
- Use `rollup.js` to bundle final UMD wrapped modules

### v1.2.3
- refactor `IsoContours` implementation
- restore default behavior to return closed polygons in `IsoContours` and `IsoBands`
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
This is Version 1.2.3 of MarchingSquaresJS
This is Version 1.3.0 of MarchingSquaresJS
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "marchingsquares",
"description": "MarchingSquaresJS - An implementation of the Marching Squares algorithm featuring Isocontour and Isoband computation.",
"version": "1.2.3",
"version": "1.3.0",
"author": "Ronny Lorenz <[email protected]>",
"contributors": [
{ "name": "Stefano Borghi" },
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { uglify } from 'rollup-plugin-uglify';
import eslint from 'rollup-plugin-eslint';

var license = "/*!\n* MarchingSquaresJS\n* version 1.2.3\n* https://github.com/RaumZeit/MarchingSquares.js\n*\n* @license GNU Affero General Public License.\n* Copyright (c) 2015-" + (new Date()).getFullYear() + " Ronny Lorenz <[email protected]>\n*/\n\n"
var license = "/*!\n* MarchingSquaresJS\n* version 1.3.0\n* https://github.com/RaumZeit/MarchingSquares.js\n*\n* @license GNU Affero General Public License.\n* Copyright (c) 2015-" + (new Date()).getFullYear() + " Ronny Lorenz <[email protected]>\n*/\n\n"

var uglify_options = {
output: {
Expand Down

0 comments on commit a9e0890

Please sign in to comment.