From a9e0890e2434f7218c654a67503ab13ccc67c9c1 Mon Sep 17 00:00:00 2001 From: Ronny Lorenz Date: Sat, 23 Jun 2018 11:03:08 +0200 Subject: [PATCH] Bump version to 1.3.0 --- Changelog.md | 7 +++++++ VERSION | 2 +- package.json | 2 +- rollup.config.js | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 92619c0..fef7d6f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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` diff --git a/VERSION b/VERSION index e2b5d74..36ede4d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -This is Version 1.2.3 of MarchingSquaresJS +This is Version 1.3.0 of MarchingSquaresJS diff --git a/package.json b/package.json index 86b48ab..66f71b2 100644 --- a/package.json +++ b/package.json @@ -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 ", "contributors": [ { "name": "Stefano Borghi" }, diff --git a/rollup.config.js b/rollup.config.js index a82f2b1..6b8188f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -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 \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 \n*/\n\n" var uglify_options = { output: {