Release version 0.12.6

This commit is contained in:
Jürg Lehni 2020-05-23 21:30:44 +02:00
parent ab481a497b
commit 65886449e1
9 changed files with 33089 additions and 11 deletions

View file

@ -1,10 +1,16 @@
# Change Log
## `0.12.6`
### Added
- PaperScript: Add option to control module exports conversion.
## `0.12.5`
### Changed
### Added
- Use `'paper-'` prefix in generated view ids.
- PaperScript: Add option to control operator overloading.
### Fixed
@ -15,9 +21,12 @@
- Support closed `Path` items with blend mode and no segments (#1763).
- Fix error in `getCrossingSegments()` (#1773).
- SVG Import: Support SVG strings with leading line-breaks (#1813).
- PaperScript: Add option to control operator overloading.
- Docs: Improve documentation for `Raster#drawImage(CanvasImageSource)` (#1784).
### Changed
- Use `'paper-'` prefix in generated view ids.
## `0.12.4`
### Added

1
dist/paper-core.js vendored
View file

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

15652
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

17418
dist/paper-full.js vendored Normal file

File diff suppressed because it is too large Load diff

4
dist/paper.d.ts vendored
View file

@ -1,5 +1,5 @@
/*!
* Paper.js v0.12.5 - The Swiss Army Knife of Vector Graphics Scripting.
* Paper.js v0.12.6 - The Swiss Army Knife of Vector Graphics Scripting.
* http://paperjs.org/
*
* Copyright (c) 2011 - 2019, Juerg Lehni & Jonathan Puckey
@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat May 23 15:51:37 2020 +0200
* Date: Sat May 23 20:53:04 2020 +0200
*
* This is an auto-generated type definition.
*/

View file

@ -105,6 +105,7 @@ packages.forEach(function(name) {
.pipe(git.commit(releaseMessage, opts))
.pipe(git.tag('v' + options.version, releaseMessage, opts))
.pipe(git.push('origin', 'master', { args: '--tags', cwd: path }))
.pipe(shell('echo <%= file.path %>'))
.pipe(shell('npm publish', opts));
});
});

View file

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

@ -1 +1 @@
Subproject commit 9c3614b4ee5627b2e799135d9c3171cc9056fd10
Subproject commit 59f1653c0e24fc69974b636feb2964ac7bc9c9a7

@ -1 +1 @@
Subproject commit 77ac84489d65ee693b58a54baeb86e5e8c1379a1
Subproject commit baf33b9a7d95e839d068337929bdc05694b3ab0a

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