Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jriecken committed Sep 11, 2016
1 parent c60de8b commit c397cbf
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## In development

## 0.6.0 (Sept 11, 2016)

- Fix "Vornoi" -> "Voronoi" everywhere. Changes are all in private code, no functional changes. (Fixes #27)
- Exposed isSeparatingAxis() function - thanks [hexus](https://github.com/hexus)!
- Allow pointInPolygon to work with small polygons. (Fixes #41)

## 0.5.0 (Dec 26, 2014)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It also supports checking whether a point is inside a circle or polygon.

It's released under the [MIT](http://en.wikipedia.org/wiki/MIT_License) license.

Current version: `0.5.0`. [Annotated source code](http://jriecken.github.io/sat-js/docs/SAT.html) is available.
Current version: `0.6.0`. [Annotated source code](http://jriecken.github.io/sat-js/docs/SAT.html) is available.

Nicely compresses with the [Google Closure Compiler](https://developers.google.com/closure/compiler/) in **Advanced** mode to about 6KB (2KB gzipped)

Expand Down
4 changes: 2 additions & 2 deletions SAT.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// Version 0.5.0 - Copyright 2012 - 2015 - Jim Riecken <[email protected]>
// Version 0.6.0 - Copyright 2012 - 2016 - Jim Riecken <[email protected]>
//
// Released under the MIT License - https://github.com/jriecken/sat-js
//
// A simple library for determining intersections of circles and
// polygons using the Separating Axis Theorem.
/** @preserve SAT.js - Version 0.5.0 - Copyright 2012 - 2015 - Jim Riecken <[email protected]> - released under the MIT License. https://github.com/jriecken/sat-js */
/** @preserve SAT.js - Version 0.6.0 - Copyright 2012 - 2016 - Jim Riecken <[email protected]> - released under the MIT License. https://github.com/jriecken/sat-js */

/*global define: false, module: false*/
/*jshint shadow:true, sub:true, forin:true, noarg:true, noempty:true,
Expand Down
28 changes: 14 additions & 14 deletions SAT.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sat",
"description": "Library for performing 2D collision detection",
"version": "0.5.0",
"version": "0.6.0",
"author": "Jim Riecken <[email protected]>",
"keywords": [
"collision detection",
Expand Down

1 comment on commit c397cbf

@hexus
Copy link
Contributor

@hexus hexus commented on c397cbf Feb 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay! Only just saw this. 👍

Please sign in to comment.