diff --git a/.github/chart-svg2.svg b/.github/chart-svg2.svg index fbb71e472..85e0aca7c 100644 --- a/.github/chart-svg2.svg +++ b/.github/chart-svg2.svg @@ -2,7 +2,7 @@ - resvg 0.24.0 + resvg 0.25.0 Chrome 93 Firefox 97 Safari 15.3 diff --git a/.github/chart.svg b/.github/chart.svg index c56cf8c3e..3ab9a66b9 100644 --- a/.github/chart.svg +++ b/.github/chart.svg @@ -2,7 +2,7 @@ - resvg 0.24.0 + resvg 0.25.0 Chrome 93 Firefox 97 Safari 15.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index ec0e61fd0..ba5c3b9d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). This changelog also contains important changes in dependencies. ## [Unreleased] + +## [0.25.0] - 2022-10-30 ### Added - Partial `paint-order` attribute support. Markers can only be under or above the shape. +### Fixed +- Compilation issues caused by `rustybuzz` update. + ## [0.24.0] - 2022-10-22 ### Added - CSS3 `writing-mode` variants `vertical-rl` and `vertical-lr`. @@ -650,7 +655,8 @@ This changelog also contains important changes in dependencies. ### Fixed - `font-size` attribute inheritance during `use` resolving. -[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.24.0...HEAD +[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.25.0...HEAD +[0.25.0]: https://github.com/RazrFalcon/resvg/compare/v0.24.0...v0.25.0 [0.24.0]: https://github.com/RazrFalcon/resvg/compare/v0.23.0...v0.24.0 [0.23.0]: https://github.com/RazrFalcon/resvg/compare/v0.22.0...v0.23.0 [0.22.0]: https://github.com/RazrFalcon/resvg/compare/v0.21.0...v0.22.0 diff --git a/Cargo.lock b/Cargo.lock index 5a961c773..8d66abfbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -192,7 +192,7 @@ checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f" [[package]] name = "resvg" -version = "0.24.0" +version = "0.25.0" dependencies = [ "gif", "jpeg-decoder", @@ -209,7 +209,7 @@ dependencies = [ [[package]] name = "resvg-capi" -version = "0.24.0" +version = "0.25.0" dependencies = [ "log", "resvg", @@ -365,7 +365,7 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" [[package]] name = "usvg" -version = "0.24.0" +version = "0.25.0" dependencies = [ "base64", "data-url", diff --git a/Cargo.toml b/Cargo.toml index a95a00067..28021a9ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg" -version = "0.24.0" +version = "0.25.0" authors = ["Yevhenii Reizner "] keywords = ["svg", "render", "raster", "skia"] license = "MPL-2.0" @@ -26,7 +26,7 @@ rgb = "0.8" svgfilters = { path = "svgfilters", version = "0.4", optional = true } svgtypes = "0.8" tiny-skia = "0.8.2" -usvg = { path = "usvg", version = "0.24.0", default-features = false } +usvg = { path = "usvg", version = "0.25.0", default-features = false } [dev-dependencies] once_cell = "1.5" diff --git a/c-api/Cargo.toml b/c-api/Cargo.toml index 8d44c129b..59cdbaf46 100644 --- a/c-api/Cargo.toml +++ b/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg-capi" -version = "0.24.0" +version = "0.25.0" authors = ["Yevhenii Reizner "] keywords = ["svg", "render", "raster", "c-api"] license = "MPL-2.0" diff --git a/c-api/ResvgQt.h b/c-api/ResvgQt.h index f380d4396..4976fbc4f 100644 --- a/c-api/ResvgQt.h +++ b/c-api/ResvgQt.h @@ -14,9 +14,9 @@ #define RESVG_QT_H #define RESVG_QT_MAJOR_VERSION 0 -#define RESVG_QT_MINOR_VERSION 24 +#define RESVG_QT_MINOR_VERSION 25 #define RESVG_QT_PATCH_VERSION 0 -#define RESVG_QT_VERSION "0.24.0" +#define RESVG_QT_VERSION "0.25.0" #include #include diff --git a/c-api/resvg.h b/c-api/resvg.h index 1c7aa26f5..bbb485c1f 100644 --- a/c-api/resvg.h +++ b/c-api/resvg.h @@ -17,9 +17,9 @@ #include #define RESVG_MAJOR_VERSION 0 -#define RESVG_MINOR_VERSION 24 +#define RESVG_MINOR_VERSION 25 #define RESVG_PATCH_VERSION 0 -#define RESVG_VERSION "0.24.0" +#define RESVG_VERSION "0.25.0" /** * @brief List of possible errors. diff --git a/tools/explorer-thumbnailer/Cargo.toml b/tools/explorer-thumbnailer/Cargo.toml index 24e7822a6..a72ec1bc6 100644 --- a/tools/explorer-thumbnailer/Cargo.toml +++ b/tools/explorer-thumbnailer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-thumbnailer" -version = "0.24.0" +version = "0.25.0" authors = ["gentoo90 "] license = "MPL-2.0" edition = "2018" diff --git a/tools/explorer-thumbnailer/install/installer.iss b/tools/explorer-thumbnailer/install/installer.iss index 767c80c51..4c5bc084e 100644 --- a/tools/explorer-thumbnailer/install/installer.iss +++ b/tools/explorer-thumbnailer/install/installer.iss @@ -1,8 +1,8 @@ [Setup] AppName="resvg Explorer Extension" -AppVersion="0.24.0" -VersionInfoVersion="0.0.24.0" -AppVerName="resvg Explorer Extension 0.24.0" +AppVersion="0.25.0" +VersionInfoVersion="0.0.25.0" +AppVerName="resvg Explorer Extension 0.25.0" AppPublisher="Yevhenii Reizner" AppPublisherURL=https://github.com/RazrFalcon/resvg DefaultDirName="{pf}\resvg Explorer Extension" diff --git a/usvg/Cargo.toml b/usvg/Cargo.toml index e57481c6d..de970c2a0 100644 --- a/usvg/Cargo.toml +++ b/usvg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usvg" -version = "0.24.0" +version = "0.25.0" authors = ["Yevhenii Reizner "] keywords = ["svg"] license = "MPL-2.0"