Skip to content

Commit bb58120

Browse files
committed
version 1.0.0
1 parent 3a4552b commit bb58120

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## 🥚 ⟩ [Unreleased]
3+
<!-- ## 🥚 ⟩ [Unreleased] -->
4+
5+
## 📦 ⟩ [v1.0.0] ⟩ Aug 5, 2022
46

57
### New Features
68
- The new [Window][window] class can display a **Canvas** on screen, respond to mouse and keyboard input, and fluidly [animate][window_anim] by calling user-defined [event handlers][window_events].
@@ -16,7 +18,7 @@
1618
### Misc. Improvements
1719
- The [`.filter`][filter] property's `"blur(…)"` and `"drop-shadow(…)"` effects now match browser behavior much more closely and scale appropriately with the `density` export option.
1820
- Antialiasing is smoother, particularly when down-scaling images, thanks to the use of mipmaps rather than Skia's (apparently buggy?) implementation of bucubic interpolation.
19-
- Calling `clearRect()` with dimensions that fully enclose the canvas will now discard all the vector objects that have been drawn so far (rather than simply covering them up).
21+
- Calling `clearRect()` with dimensions that fully enclose the canvas will now discard all the vector objects that have been drawn so far (rather than simply covering them up).
2022
- Upgraded Skia to milestone 103
2123

2224
[window]: https://github.com/samizdatco/skia-canvas#window
@@ -253,7 +255,8 @@
253255

254256
**Initial public release** 🎉
255257

256-
[unreleased]: https://github.com/samizdatco/skia-canvas/compare/v0.9.30...HEAD
258+
[unreleased]: https://github.com/samizdatco/skia-canvas/compare/v1.0.0...HEAD
259+
[v1.0.0]: https://github.com/samizdatco/skia-canvas/compare/v0.9.30...v1.0.0
257260
[v0.9.30]: https://github.com/samizdatco/skia-canvas/compare/v0.9.29...v0.9.30
258261
[v0.9.29]: https://github.com/samizdatco/skia-canvas/compare/v0.9.28...v0.9.29
259262
[v0.9.28]: https://github.com/samizdatco/skia-canvas/compare/v0.9.27...v0.9.28

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skia-canvas"
3-
version = "0.9.30"
3+
version = "1.0.0"
44
description = "A canvas environment for Node"
55
authors = ["Christian Swinehart <drafting@samizdat.co>"]
66
license = "MIT"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skia-canvas",
3-
"version": "0.9.31-rc5",
3+
"version": "1.0.0",
44
"description": "A GPU-accelerated Canvas Graphics API for Node",
55
"author": "Christian Swinehart <drafting@samizdat.co>",
66
"license": "MIT",

0 commit comments

Comments
 (0)