Skip to content

Commit

Permalink
Bump to version number 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RaumZeit committed Sep 2, 2018
1 parent 7568071 commit bfea0a3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### v1.3.2
- Fix frame detection for iso line/contour tracer
- Add homepage field to package.json

### v1.3.1
- Fix isoLine out-of-grid tracing issue
- Rename `quadTree` constructor function to `QuadTree`
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.1 of MarchingSquaresJS
This is Version 1.3.2 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.1",
"version": "1.3.2",
"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.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 license = "/*!\n* MarchingSquaresJS\n* version 1.3.2\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.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 license = "/*!\n* MarchingSquaresJS\n* version 1.3.2\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 bfea0a3

Please sign in to comment.