diff --git a/CHANGELOG.md b/CHANGELOG.md index c51727a57..9fd692af5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.2.0] - 2018-04-24 ### Added - (svg) Partial `clipPath` support. - (svg) Partial `mask` support. @@ -21,4 +22,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - `font-size` attribute inheritance during `use` resolving. -[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/RazrFalcon/xmlparser/compare/0.1.0...0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 6226c9aeb..014aba9c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ image = { version = "0.18", default-features = false, features = ["jpeg", "png_c pango = { version = "0.4", optional = true } pangocairo = { version = "0.5", optional = true } # qt backend -resvg-qt = { version = "0.2", optional = true } +resvg-qt = { version = "0.2.1", optional = true } [features] cairo-backend = ["cairo-rs", "pango", "pangocairo", "image"] diff --git a/tools/rendersvg/Cargo.toml b/tools/rendersvg/Cargo.toml index c4ad9bf7d..b941b8c99 100644 --- a/tools/rendersvg/Cargo.toml +++ b/tools/rendersvg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rendersvg" -version = "0.1.0" +version = "0.2.0" authors = ["Evgeniy Reizner "] keywords = ["svg", "render", "raster"] license = "MPL-2.0"