diff --git a/.github/chart.svg b/.github/chart.svg index 15d2c9ac0..2d7472f26 100644 --- a/.github/chart.svg +++ b/.github/chart.svg @@ -1,7 +1,7 @@ - resvg 0.12.0 + resvg 0.13.0 Chromium r818858 Firefox 83 Inkscape 1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 82f7f7e26..6c213837e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). This changelog also contains important changes in dependencies. ## [Unreleased] + +## [0.13.0] - 2020-12-21 ### Added - `--resources-dir` option to CLI tools. - (usvg) `Tree::from_xmltree` @@ -412,7 +414,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.12.0...HEAD +[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.13.0...HEAD +[0.13.0]: https://github.com/RazrFalcon/resvg/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/RazrFalcon/resvg/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/RazrFalcon/resvg/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/RazrFalcon/resvg/compare/v0.9.1...v0.10.0 diff --git a/Cargo.lock b/Cargo.lock index 7464b6396..fde86244b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -222,7 +222,7 @@ checksum = "be9e29cb19c8fe84169fcb07f8f11e66bc9e6e0280efd4715c54818296f8a4a8" [[package]] name = "resvg" -version = "0.12.0" +version = "0.13.0" dependencies = [ "jpeg-decoder", "log", @@ -237,7 +237,7 @@ dependencies = [ [[package]] name = "resvg-capi" -version = "0.12.0" +version = "0.13.0" dependencies = [ "log", "resvg", @@ -387,7 +387,7 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" [[package]] name = "usvg" -version = "0.12.0" +version = "0.13.0" dependencies = [ "base64", "data-url", diff --git a/Cargo.toml b/Cargo.toml index 0c7153687..5c0045d8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg" -version = "0.12.0" +version = "0.13.0" authors = ["Reizner Evgeniy "] keywords = ["svg", "render", "raster", "skia"] license = "MPL-2.0" @@ -26,7 +26,7 @@ png = "0.16" rgb = "0.8" svgfilters = { path = "svgfilters", version = "0.2" } tiny-skia = "0.3" -usvg = { path = "usvg", version = "0.12", default-features = false } +usvg = { path = "usvg", version = "0.13", default-features = false } [dev-dependencies] once_cell = "1.5" diff --git a/c-api/Cargo.toml b/c-api/Cargo.toml index fd8004ff8..f1c688739 100644 --- a/c-api/Cargo.toml +++ b/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg-capi" -version = "0.12.0" +version = "0.13.0" authors = ["Evgeniy Reizner "] keywords = ["svg", "render", "raster", "c-api"] license = "MPL-2.0" diff --git a/c-api/ResvgQt.h b/c-api/ResvgQt.h index 73ffe106d..72d2af0d6 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 12 +#define RESVG_QT_MINOR_VERSION 13 #define RESVG_QT_PATCH_VERSION 0 -#define RESVG_QT_VERSION "0.12.0" +#define RESVG_QT_VERSION "0.13.0" #include #include diff --git a/c-api/resvg.h b/c-api/resvg.h index 5637c0e8c..bfc9a0753 100644 --- a/c-api/resvg.h +++ b/c-api/resvg.h @@ -18,9 +18,9 @@ #include #define RESVG_MAJOR_VERSION 0 -#define RESVG_MINOR_VERSION 12 +#define RESVG_MINOR_VERSION 13 #define RESVG_PATCH_VERSION 0 -#define RESVG_VERSION "0.12.0" +#define RESVG_VERSION "0.13.0" #ifdef __cplusplus extern "C" { diff --git a/make-vendored.sh b/make-vendored.sh index e08fe89c3..b0b6e6f04 100755 --- a/make-vendored.sh +++ b/make-vendored.sh @@ -2,7 +2,7 @@ set -e -VERSION="0.12.0" +VERSION="0.13.0" git clone https://github.com/RazrFalcon/resvg resvg-$VERSION cd resvg-"$VERSION" diff --git a/src/lib.rs b/src/lib.rs index 8bd115134..3163b2f50 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ [resvg](https://github.com/RazrFalcon/resvg) is an SVG rendering library. */ -#![doc(html_root_url = "https://docs.rs/resvg/0.12.0")] +#![doc(html_root_url = "https://docs.rs/resvg/0.13.0")] #![warn(missing_docs)] diff --git a/tools/explorer-thumbnailer/Cargo.toml b/tools/explorer-thumbnailer/Cargo.toml index 64072df59..9f8f3229a 100644 --- a/tools/explorer-thumbnailer/Cargo.toml +++ b/tools/explorer-thumbnailer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-thumbnailer" -version = "0.12.0" +version = "0.13.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 d411030ad..cb4e1f5d1 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.12.0" -VersionInfoVersion="0.0.12.0" -AppVerName="resvg Explorer Extension 0.12.0" +AppVersion="0.13.0" +VersionInfoVersion="0.0.13.0" +AppVerName="resvg Explorer Extension 0.13.0" AppPublisher="Evgeniy Reizner" AppPublisherURL=https://github.com/RazrFalcon/resvg DefaultDirName="{pf}\resvg Explorer Extension" diff --git a/usvg/Cargo.toml b/usvg/Cargo.toml index 14bf73ba4..1dcce1efa 100644 --- a/usvg/Cargo.toml +++ b/usvg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usvg" -version = "0.12.0" +version = "0.13.0" authors = ["Evgeniy Reizner "] keywords = ["svg"] license = "MPL-2.0" diff --git a/usvg/src/lib.rs b/usvg/src/lib.rs index fabd8ca34..5cec7a8af 100644 --- a/usvg/src/lib.rs +++ b/usvg/src/lib.rs @@ -57,7 +57,7 @@ Full spec can be found [here](https://github.com/RazrFalcon/resvg/blob/master/do [SVG]: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics */ -#![doc(html_root_url = "https://docs.rs/usvg/0.12.0")] +#![doc(html_root_url = "https://docs.rs/usvg/0.13.0")] #![warn(missing_docs)] #![warn(missing_debug_implementations)] diff --git a/usvg/tests/files/clippath-with-invalid-child-out.svg b/usvg/tests/files/clippath-with-invalid-child-out.svg index 25a00d49b..47396f686 100644 --- a/usvg/tests/files/clippath-with-invalid-child-out.svg +++ b/usvg/tests/files/clippath-with-invalid-child-out.svg @@ -4,6 +4,6 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/clippath-with-invalid-children-out.svg b/usvg/tests/files/clippath-with-invalid-children-out.svg index 25a00d49b..47396f686 100644 --- a/usvg/tests/files/clippath-with-invalid-children-out.svg +++ b/usvg/tests/files/clippath-with-invalid-children-out.svg @@ -4,6 +4,6 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/fe-diffuse-lighting-without-light-source-out.svg b/usvg/tests/files/fe-diffuse-lighting-without-light-source-out.svg index 10f54e586..f336e5a03 100644 --- a/usvg/tests/files/fe-diffuse-lighting-without-light-source-out.svg +++ b/usvg/tests/files/fe-diffuse-lighting-without-light-source-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/group-clippath-out.svg b/usvg/tests/files/group-clippath-out.svg index 6dc3c8a0e..721f15a3b 100644 --- a/usvg/tests/files/group-clippath-out.svg +++ b/usvg/tests/files/group-clippath-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/group-with-an-invalid-child-out.svg b/usvg/tests/files/group-with-an-invalid-child-out.svg index 25a00d49b..47396f686 100644 --- a/usvg/tests/files/group-with-an-invalid-child-out.svg +++ b/usvg/tests/files/group-with-an-invalid-child-out.svg @@ -4,6 +4,6 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/group-with-default-opacity-out.svg b/usvg/tests/files/group-with-default-opacity-out.svg index 5d3e22482..a2853a2c1 100644 --- a/usvg/tests/files/group-with-default-opacity-out.svg +++ b/usvg/tests/files/group-with-default-opacity-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/ignore-groups-with-id-out.svg b/usvg/tests/files/ignore-groups-with-id-out.svg index a776fc7e2..908fc75c2 100644 --- a/usvg/tests/files/ignore-groups-with-id-out.svg +++ b/usvg/tests/files/ignore-groups-with-id-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/marker-with-visible-overflow-out.svg b/usvg/tests/files/marker-with-visible-overflow-out.svg index 681b24d19..2e70b825b 100644 --- a/usvg/tests/files/marker-with-visible-overflow-out.svg +++ b/usvg/tests/files/marker-with-visible-overflow-out.svg @@ -4,7 +4,7 @@ height="1" viewBox="0 0 1 1" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/pattern-with-invalid-child-out.svg b/usvg/tests/files/pattern-with-invalid-child-out.svg index 02b223c72..6196182ce 100644 --- a/usvg/tests/files/pattern-with-invalid-child-out.svg +++ b/usvg/tests/files/pattern-with-invalid-child-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> diff --git a/usvg/tests/files/simple-switch-out.svg b/usvg/tests/files/simple-switch-out.svg index b67011757..d8d2cd682 100644 --- a/usvg/tests/files/simple-switch-out.svg +++ b/usvg/tests/files/simple-switch-out.svg @@ -4,7 +4,7 @@ viewBox="0 0 1 1" xmlns="http://www.w3.org/2000/svg" xmlns:usvg="https://github.com/RazrFalcon/resvg" - usvg:version="0.12.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0"> + usvg:version="0.13.0">