Skip to content

Commit

Permalink
Bump to version number 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RaumZeit committed Jul 5, 2018
1 parent 2e9361c commit f729b3d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
# Changelog

### v1.3.1
- Fix isoLine out-of-grid tracing issue
- Rename `quadTree` constructor function to `QuadTree`
- Add more input sanity checks
- Restructure examples/ directory
- Add editable example
- Add iso lines example


### 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 All @@ -17,6 +27,7 @@
- Refactor `IsoBands` implementation
- Spellcheck README.md


### v1.2.1
- Add npm package link to README.md
- Fix line coordinate issues in `IsoContours` implementation
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.3.0 of MarchingSquaresJS
This is Version 1.3.1 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.3.0",
"version": "1.3.1",
"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.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 license = "/*!\n* MarchingSquaresJS\n* version 1.3.1\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
2 changes: 1 addition & 1 deletion rollup.config.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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 license = "/*!\n* MarchingSquaresJS\n* version 1.3.1\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"

export default [
{
Expand Down

0 comments on commit f729b3d

Please sign in to comment.