Publish version 0.17.3

Change-Id: I08199a86f59e33ed87ee48b879b405f496d03f67
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/308166
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Reviewed-by: Nathaniel Nifong <nifong@google.com>
Commit-Queue: Nathaniel Nifong <nifong@google.com>
This commit is contained in:
Nathaniel Nifong 2020-08-05 10:46:45 -04:00 committed by Skia Commit-Bot
parent 07438b0cda
commit 2000c64e2b
2 changed files with 8 additions and 2 deletions

View File

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.17.3] - 2020-08-05
### Added
- Added `CanvasKit.TypefaceFontProvider`, which can be used to register fonts
with a font family alias. For example, "Roboto Light" may be registered with
@ -13,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
font weight.
- Added `CanvasKit.ParagraphBuilder.MakeFromFontProvider` to make a
`ParagraphBuilder` from a `TypefaceFontProvider`.
- Added `CanvasKit.ParagraphBuilder.pushPaintStyle` which can be used to stroke or fill
text with paints instead of simple colors.
## [0.17.2] - 2020-07-22
@ -23,7 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Compile option to deserialize effects in skps `include_effects_deserialization`.
- ParagraphBuilder.pushPaintStyle which allows Paints to be used to color text.
### Changed
- Pathops and SKP deserialization/serialization enabled on the npm build.

View File

@ -1,6 +1,6 @@
{
"name": "canvaskit-wasm",
"version": "0.17.2",
"version": "0.17.3",
"description": "A WASM version of Skia's Canvas API",
"main": "bin/canvaskit.js",
"homepage": "https://github.com/google/skia/tree/master/modules/canvaskit",
@ -8,5 +8,8 @@
"url": "https://bugs.chromium.org/p/skia/issues/entry"
},
"permsRepo": "skia-dev/.github",
"publishConfig": {
"registry":"https://wombat-dressing-room.appspot.com"
},
"license": "BSD-3-Clause"
}