From f729b3db16307bef2c6848208b12664f8bf56498 Mon Sep 17 00:00:00 2001 From: Ronny Lorenz Date: Thu, 5 Jul 2018 22:08:36 +0200 Subject: [PATCH] Bump to version number 1.3.1 --- Changelog.md | 11 +++++++++++ VERSION | 2 +- package.json | 2 +- rollup.config.js | 2 +- rollup.config.test.js | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index fef7d6f..3122f8c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,14 @@ # 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 @@ -7,6 +16,7 @@ - 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` @@ -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 diff --git a/VERSION b/VERSION index 36ede4d..96c9960 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -This is Version 1.3.0 of MarchingSquaresJS +This is Version 1.3.1 of MarchingSquaresJS diff --git a/package.json b/package.json index 48d1b51..a93f089 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.3.0", + "version": "1.3.1", "author": "Ronny Lorenz ", "contributors": [ {"name": "Stefano Borghi"}, diff --git a/rollup.config.js b/rollup.config.js index 6b8188f..d986e50 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.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 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 \n*/\n\n" var uglify_options = { output: { diff --git a/rollup.config.test.js b/rollup.config.test.js index 8240633..b6af02e 100644 --- a/rollup.config.test.js +++ b/rollup.config.test.js @@ -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 \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 \n*/\n\n" export default [ {