Release version 0.11.2

This commit is contained in:
Jürg Lehni 2017-04-20 19:34:40 +02:00
parent 9320a720c2
commit 90f816f959
7 changed files with 31190 additions and 6 deletions

View file

@ -1,5 +1,11 @@
# Change Log
## `0.11.2`
### Fixed
- PaperScript: Fix a parsing error in math operations without white-space
(#1314).
## `0.11.1`
### Fixed

1
dist/paper-core.js vendored
View file

@ -1 +0,0 @@
../src/load.js

14741
dist/paper-core.js vendored Normal file

File diff suppressed because it is too large Load diff

1
dist/paper-full.js vendored
View file

@ -1 +0,0 @@
../src/load.js

16439
dist/paper-full.js vendored Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "paper",
"version": "0.11.1",
"version": "0.11.2",
"description": "The Swiss Army Knife of Vector Graphics Scripting",
"license": "MIT",
"homepage": "http://paperjs.org",

@ -1 +1 @@
Subproject commit da0a97827aa81e313945c295d469f3c326208963
Subproject commit bab27f25fed8d78f072d8f9a9f68da61e7d1e975

@ -1 +1 @@
Subproject commit 84a82ca9c23e86a80c1db9b6a38a323c74c3890a
Subproject commit 2e257a436e1cfec74ca6ffe4828a761ec058b42f

View file

@ -17,7 +17,7 @@
// The paper.js version.
// NOTE: Adjust value here before calling `gulp publish`, which then updates and
// publishes the various JSON package files automatically.
var version = '0.11.1';
var version = '0.11.2';
// If this file is loaded in the browser, we're in load.js mode.
var load = typeof window === 'object';