Release version 0.11.1

This commit is contained in:
Jürg Lehni 2017-04-20 18:43:16 +02:00
parent 966425d962
commit 5046d6968b
5 changed files with 31188 additions and 4 deletions

View file

@ -1,5 +1,11 @@
# Change Log
## `0.11.1`
### Fixed
- Bring back deactivation of Node.js modules on browsers. This has most probably
broken Webpack bundling in `0.11.0`.
## `0.11.0`
### Changed

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.0",
"version": "0.11.1",
"description": "The Swiss Army Knife of Vector Graphics Scripting",
"license": "MIT",
"homepage": "http://paperjs.org",

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.0';
var version = '0.11.1';
// If this file is loaded in the browser, we're in load.js mode.
var load = typeof window === 'object';