[pathkit] Publish 1.0.0

The API has been stable for long enough to start using major versions.

Change-Id: I70bb75c6f4b51d2d76b933898608ee2efc155f3b
Bug: skia:8216
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/503738
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
This commit is contained in:
Kevin Lubick 2022-02-03 10:47:20 -05:00
parent cedcaeed01
commit d66553ba8c
5 changed files with 13 additions and 5 deletions

View File

@ -1,4 +1,8 @@
**/bin
node_modules/
build/
package-lock.json
package-lock.json
# We copy the CHANGELOG into the bundle shipped to CanvasKit, but we do not
# want to check that in.
npm-asmjs/CHANGELOG.md
npm-wasm/CHANGELOG.md

View File

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.0.0] 2022-02-03
### Changed
- Now compile with emsdk 3.1.3
- Internal calls no longer use dynamic dispatch (skbug.com/12795)

View File

@ -28,6 +28,8 @@ npm:
./compile.sh asm.js
cp ../../out/pathkit/pathkit.js ./npm-asmjs/bin/pathkit.js
cp ../../out/pathkit/pathkit.js.mem ./npm-asmjs/bin/pathkit.js.mem
cp CHANGELOG.md ./npm-wasm
cp CHANGELOG.md ./npm-asmjs
test-continuous:
echo "Assuming npm ci has been run by user"

View File

@ -1,6 +1,6 @@
{
"name": "pathkit-asmjs",
"version": "0.7.0",
"version": "1.0.0",
"description": "A asm.js version of Skia's PathOps toolkit",
"main": "bin/pathkit.js",
"homepage": "https://github.com/google/skia/tree/main/modules/pathkit",
@ -9,7 +9,7 @@
},
"permsRepo": "skia-dev/.github",
"publishConfig": {
"registry":"https://wombat-dressing-room.appspot.com"
"registry": "https://wombat-dressing-room.appspot.com"
},
"license": "BSD-3-Clause"
}

View File

@ -1,6 +1,6 @@
{
"name": "pathkit-wasm",
"version": "0.7.0",
"version": "1.0.0",
"description": "A WASM version of Skia's PathOps toolkit",
"main": "bin/pathkit.js",
"homepage": "https://github.com/google/skia/tree/main/modules/pathkit",
@ -9,7 +9,7 @@
},
"permsRepo": "skia-dev/.github",
"publishConfig": {
"registry":"https://wombat-dressing-room.appspot.com"
"registry": "https://wombat-dressing-room.appspot.com"
},
"license": "BSD-3-Clause"
}