Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.12.0] - 2026-02-02
### Fixed
- Fixed a panic when drawing small anti-aliased rectangles. Thanks to [@nwhitehead](https://github.com/nwhitehead)

Expand Down Expand Up @@ -270,7 +272,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Bindings to a stripped down Skia fork.

[Unreleased]: https://github.com/linebender/tiny-skia/compare/v0.11.4...HEAD
[Unreleased]: https://github.com/linebender/tiny-skia/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/linebender/tiny-skia/compare/v0.11.4...v0.12.0
[0.11.4]: https://github.com/linebender/tiny-skia/compare/v0.11.3...v0.11.4
[0.11.3]: https://github.com/linebender/tiny-skia/compare/v0.11.2...v0.11.3
[0.11.2]: https://github.com/linebender/tiny-skia/compare/v0.11.1...v0.11.2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiny-skia"
version = "0.11.4"
version = "0.12.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
edition = "2021"
description = "A tiny Skia subset ported to Rust."
Expand All @@ -21,7 +21,7 @@ bytemuck = { version = "1.24", features = ["aarch64_simd"] }
cfg-if = "1"
log = "0.4"
png = { version = "0.18", optional = true }
tiny-skia-path = { version = "0.11.4", path = "path", default-features = false }
tiny-skia-path = { version = "0.12.0", path = "path", default-features = false }

[features]
default = ["std", "simd", "png-format"]
Expand Down
2 changes: 1 addition & 1 deletion path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiny-skia-path"
version = "0.11.4"
version = "0.12.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
edition = "2021"
description = "A tiny-skia Bezier path implementation"
Expand Down