diff --git a/CHANGELOG.md b/CHANGELOG.md index b0ab37c..4959baa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.11.2] - 2023-10-01 +### Changed +- MSRV bumped to stable, because of the `flate2` crate. + +### Fixed +- `Transform::is_valid` was treating 1/4096 as zero. We need a higher precision. +- Build failure on AVX2 with `--no-default-features`. + Thanks to [@linkmauve](https://github.com/linkmauve) + ## [0.11.1] - 2023-06-17 ### Changed - MSRV bumped to 1.60, because of the `log` crate. @@ -230,7 +239,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - Bindings to a stripped down Skia fork. -[Unreleased]: https://github.com/RazrFalcon/tiny-skia/compare/v0.11.1...HEAD +[Unreleased]: https://github.com/RazrFalcon/tiny-skia/compare/v0.11.2...HEAD +[0.11.2]: https://github.com/RazrFalcon/tiny-skia/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/RazrFalcon/tiny-skia/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/RazrFalcon/tiny-skia/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/RazrFalcon/tiny-skia/compare/v0.9.1...v0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 3034c4a..e87caff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiny-skia" -version = "0.11.1" +version = "0.11.2" authors = ["Yevhenii Reizner "] edition = "2018" description = "A tiny Skia subset ported to Rust." diff --git a/path/Cargo.toml b/path/Cargo.toml index dbcfe0a..64131ec 100644 --- a/path/Cargo.toml +++ b/path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tiny-skia-path" -version = "0.11.1" +version = "0.11.2" authors = ["Yevhenii Reizner "] edition = "2018" description = "A tiny-skia Bezier path implementation"