From ed537fa467919ab75d8ee2b5c3a197f14a917909 Mon Sep 17 00:00:00 2001 From: Evgeniy Reizner Date: Wed, 20 Jan 2021 02:33:06 +0200 Subject: [PATCH] Version bump. --- CHANGELOG.md | 6 +++++- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- c-api/Cargo.toml | 2 +- c-api/ResvgQt.h | 4 ++-- c-api/resvg.h | 4 ++-- make-vendored.sh | 2 +- src/lib.rs | 2 +- tools/explorer-thumbnailer/Cargo.toml | 2 +- tools/explorer-thumbnailer/install/installer.iss | 6 +++--- usvg/Cargo.toml | 2 +- usvg/src/lib.rs | 2 +- usvg/tests/files/clippath-with-invalid-child-out.svg | 2 +- usvg/tests/files/clippath-with-invalid-children-out.svg | 2 +- .../files/fe-diffuse-lighting-without-light-source-out.svg | 2 +- usvg/tests/files/fe-image-duplicates-out.svg | 2 +- usvg/tests/files/fe-image-with-invalid-link-out.svg | 2 +- ...specular-lighting-with-invalid-specular-exponent-out.svg | 2 +- .../files/fe-specular-lighting-without-light-source-out.svg | 2 +- usvg/tests/files/fill-rule-on-text-out.svg | 2 +- usvg/tests/files/group-clippath-out.svg | 2 +- usvg/tests/files/group-with-an-invalid-child-out.svg | 2 +- usvg/tests/files/group-with-default-opacity-out.svg | 2 +- usvg/tests/files/groups-out.svg | 2 +- usvg/tests/files/ignore-empty-groups-with-id-out.svg | 2 +- usvg/tests/files/ignore-groups-with-id-out.svg | 2 +- usvg/tests/files/keep-groups-with-id-out.svg | 2 +- usvg/tests/files/marker-with-visible-overflow-out.svg | 2 +- usvg/tests/files/minimal-out.svg | 2 +- usvg/tests/files/nested-group-with-an-invalid-child-out.svg | 2 +- usvg/tests/files/pattern-with-invalid-child-out.svg | 2 +- usvg/tests/files/pattern-without-children-out.svg | 2 +- usvg/tests/files/preserve-id-out.svg | 2 +- usvg/tests/files/simple-switch-out.svg | 2 +- usvg/tests/files/simplify-paths-out.svg | 2 +- usvg/tests/files/switch-with-opacity-out.svg | 2 +- version-bump.md | 2 -- 37 files changed, 47 insertions(+), 45 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5cf3376a..804aaf63e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). This changelog also contains important changes in dependencies. ## [Unreleased] + +## [0.13.1] - 2021-01-20 ### Fixed - `image` with float size scaling. +- Critical bug in `tiny-skia`. ## [0.13.0] - 2020-12-21 ### Added @@ -416,7 +419,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.13.0...HEAD +[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.13.1...HEAD +[0.13.1]: https://github.com/RazrFalcon/resvg/compare/v0.13.0...v0.13.1 [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 diff --git a/Cargo.lock b/Cargo.lock index 1c6cec754..f39621afa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -222,7 +222,7 @@ checksum = "be9e29cb19c8fe84169fcb07f8f11e66bc9e6e0280efd4715c54818296f8a4a8" [[package]] name = "resvg" -version = "0.13.0" +version = "0.13.1" dependencies = [ "jpeg-decoder", "log", @@ -237,7 +237,7 @@ dependencies = [ [[package]] name = "resvg-capi" -version = "0.13.0" +version = "0.13.1" dependencies = [ "log", "resvg", @@ -387,7 +387,7 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" [[package]] name = "usvg" -version = "0.13.0" +version = "0.13.1" dependencies = [ "base64", "data-url", diff --git a/Cargo.toml b/Cargo.toml index ad7129990..5764002e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg" -version = "0.13.0" +version = "0.13.1" 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.4.1" -usvg = { path = "usvg", version = "0.13", default-features = false } +usvg = { path = "usvg", version = "0.13.1", default-features = false } [dev-dependencies] once_cell = "1.5" diff --git a/c-api/Cargo.toml b/c-api/Cargo.toml index ba15b93ef..3c8ac1e93 100644 --- a/c-api/Cargo.toml +++ b/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg-capi" -version = "0.13.0" +version = "0.13.1" 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 72d2af0d6..866b0b16a 100644 --- a/c-api/ResvgQt.h +++ b/c-api/ResvgQt.h @@ -15,8 +15,8 @@ #define RESVG_QT_MAJOR_VERSION 0 #define RESVG_QT_MINOR_VERSION 13 -#define RESVG_QT_PATCH_VERSION 0 -#define RESVG_QT_VERSION "0.13.0" +#define RESVG_QT_PATCH_VERSION 1 +#define RESVG_QT_VERSION "0.13.1" #include #include diff --git a/c-api/resvg.h b/c-api/resvg.h index bfc9a0753..931377ad9 100644 --- a/c-api/resvg.h +++ b/c-api/resvg.h @@ -19,8 +19,8 @@ #define RESVG_MAJOR_VERSION 0 #define RESVG_MINOR_VERSION 13 -#define RESVG_PATCH_VERSION 0 -#define RESVG_VERSION "0.13.0" +#define RESVG_PATCH_VERSION 1 +#define RESVG_VERSION "0.13.1" #ifdef __cplusplus extern "C" { diff --git a/make-vendored.sh b/make-vendored.sh index b0b6e6f04..97a8853cc 100755 --- a/make-vendored.sh +++ b/make-vendored.sh @@ -2,7 +2,7 @@ set -e -VERSION="0.13.0" +VERSION="0.13.1" git clone https://github.com/RazrFalcon/resvg resvg-$VERSION cd resvg-"$VERSION" diff --git a/src/lib.rs b/src/lib.rs index 3163b2f50..e75b16b51 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.13.0")] +#![doc(html_root_url = "https://docs.rs/resvg/0.13.1")] #![warn(missing_docs)] diff --git a/tools/explorer-thumbnailer/Cargo.toml b/tools/explorer-thumbnailer/Cargo.toml index 99cd6a2ed..d20c02c30 100644 --- a/tools/explorer-thumbnailer/Cargo.toml +++ b/tools/explorer-thumbnailer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-thumbnailer" -version = "0.13.0" +version = "0.13.1" 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 cb4e1f5d1..f36965a76 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.13.0" -VersionInfoVersion="0.0.13.0" -AppVerName="resvg Explorer Extension 0.13.0" +AppVersion="0.13.1" +VersionInfoVersion="0.0.13.1" +AppVerName="resvg Explorer Extension 0.13.1" 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 1dcce1efa..ec6a8edbf 100644 --- a/usvg/Cargo.toml +++ b/usvg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usvg" -version = "0.13.0" +version = "0.13.1" authors = ["Evgeniy Reizner "] keywords = ["svg"] license = "MPL-2.0" diff --git a/usvg/src/lib.rs b/usvg/src/lib.rs index 5cec7a8af..4addd15fd 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.13.0")] +#![doc(html_root_url = "https://docs.rs/usvg/0.13.1")] #![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 47396f686..699c81c2b 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.13.0"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/clippath-with-invalid-children-out.svg b/usvg/tests/files/clippath-with-invalid-children-out.svg index 47396f686..699c81c2b 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.13.0"> + usvg:version="0.13.1"> 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 f336e5a03..3aa647fb5 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/group-clippath-out.svg b/usvg/tests/files/group-clippath-out.svg index 721f15a3b..fe640aaf0 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.13.0"> + usvg:version="0.13.1"> 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 47396f686..699c81c2b 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.13.0"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/group-with-default-opacity-out.svg b/usvg/tests/files/group-with-default-opacity-out.svg index a2853a2c1..857ff6e00 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/ignore-groups-with-id-out.svg b/usvg/tests/files/ignore-groups-with-id-out.svg index 908fc75c2..de81209ba 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/marker-with-visible-overflow-out.svg b/usvg/tests/files/marker-with-visible-overflow-out.svg index 2e70b825b..5423a5c25 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/pattern-with-invalid-child-out.svg b/usvg/tests/files/pattern-with-invalid-child-out.svg index 6196182ce..3e6f8df45 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/usvg/tests/files/simple-switch-out.svg b/usvg/tests/files/simple-switch-out.svg index d8d2cd682..13b2201c5 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.13.0"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> + usvg:version="0.13.1"> diff --git a/version-bump.md b/version-bump.md index 7cc025d8d..d263fcbbf 100644 --- a/version-bump.md +++ b/version-bump.md @@ -7,8 +7,6 @@ - c-api/ResvgQt.h - usvg/Cargo.toml - usvg/src/lib.rs -- usvg/c-api/resvg.h -- usvg/c-api/ResvgQt.h - usvg/tests/files/* - tools/explorer-thumbnailer/install/installer.iss - tools/explorer-thumbnailer/Cargo.toml