Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
andriiheonia committed Jun 28, 2019
1 parent b5e5108 commit 1ce2b41
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2016, Andrii Heonia
Copyright (c) 2014-2019, Andrii Heonia
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Let's see step by step what happens when you call `hull()` function:
</ol>

## Limitations
This library relies on ES6. The ES6 features used are
This library relies on ES6. The ES6 features used are:
- `new Set(null)`, `Set#add`, `Set#has`
- `let`, `const`
- `Math.trunc` (if available)
Expand All @@ -52,7 +52,7 @@ You may use [polyfills](https://www.npmjs.com/package/core-js) for `Set` and com

## Development
npm install # install dependencies
npm test # build dist file and run tests
npm test # build dist file and run tests
npm run-script watch # watch ./src dir and rebuild dist file

## Contribute
Expand All @@ -61,7 +61,6 @@ If you want to get involved with Hull.js development, just use <a href="https://

## To-do

* think about parallelisation (on GPU or CPU);
* think about holes;
* think about automatic `concavity` adjustment based on density.

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hull-js",
"version": "0.2.10",
"version": "1.0.0",
"description": "JavaScript library that builds concave hulls (shapes) by set of points",
"homepage": "https://github.com/AndriiHeonia/hull",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion dist/hull.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function grid(points, cellSize) {
module.exports = grid;
},{}],4:[function(require,module,exports){
/*
(c) 2014-2016, Andrii Heonia
(c) 2014-2019, Andrii Heonia
Hull.js, a JavaScript library for concave hull generation by set of points.
https://github.com/AndriiHeonia/hull
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hull.js",
"version": "0.2.11",
"version": "1.0.0",
"description": "JavaScript library that builds concave hulls (shapes) by set of points",
"homepage": "https://github.com/AndriiHeonia/hull",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/hull.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
(c) 2014-2016, Andrii Heonia
(c) 2014-2019, Andrii Heonia
Hull.js, a JavaScript library for concave hull generation by set of points.
https://github.com/AndriiHeonia/hull
*/
Expand Down

0 comments on commit 1ce2b41

Please sign in to comment.