From 78466fb486e641a96dea2bed7c37a364f7e650e3 Mon Sep 17 00:00:00 2001 From: Evgeniy Reizner Date: Sun, 13 Jun 2021 22:21:02 +0300 Subject: [PATCH] Version bump. --- .github/chart.svg | 52 +++++++++---------- CHANGELOG.md | 5 +- Cargo.lock | 6 +-- Cargo.toml | 6 +-- c-api/Cargo.toml | 4 +- c-api/ResvgQt.h | 6 +-- c-api/resvg.h | 6 +-- make-vendored.sh | 2 +- src/lib.rs | 2 +- tools/explorer-thumbnailer/Cargo.toml | 2 +- .../install/installer.iss | 6 +-- usvg/Cargo.toml | 2 +- usvg/src/lib.rs | 2 +- version-bump.md | 1 - 14 files changed, 52 insertions(+), 50 deletions(-) diff --git a/.github/chart.svg b/.github/chart.svg index a1920dfea..eda308c3d 100644 --- a/.github/chart.svg +++ b/.github/chart.svg @@ -1,43 +1,43 @@ - resvg 0.14.1 - Chromium r856583 - Firefox 87 - Inkscape 1.0.2 - librsvg 2.51.1 + resvg 0.15.0 + Chromium r883894 + Firefox 89 + Inkscape 1.1 + librsvg 2.50.7 Batik 1.14 SVG.NET 3.2.3 - QtSvg 5.15.2 + QtSvg 6.1.1 wxSvg 1.5.11 0 - 336 + 339 - 672 + 677 - 1008 + 1016 - 1344 - - 1284 - - 1198 + 1354 + + 1295 + + 1209 - 1173 - - 979 - - 1018 - - 944 + 1182 + + 930 + + 1001 + + 956 - 624 - - 457 - - 341 + 630 + + 435 + + 347 Tests passed diff --git a/CHANGELOG.md b/CHANGELOG.md index fbb8b7b31..d04e08b3d 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.15.0] - 2021-06-13 ### Added - Allow reading SVG from stdin in `resvg` binary. - `--id-prefix` to `usvg`. @@ -470,7 +472,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.14.1...HEAD +[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.15.0...HEAD +[0.15.0]: https://github.com/RazrFalcon/resvg/compare/v0.14.1...v0.15.0 [0.14.1]: https://github.com/RazrFalcon/resvg/compare/v0.14.0...v0.14.1 [0.14.0]: https://github.com/RazrFalcon/resvg/compare/v0.13.1...v0.14.0 [0.13.1]: https://github.com/RazrFalcon/resvg/compare/v0.13.0...v0.13.1 diff --git a/Cargo.lock b/Cargo.lock index 406041bd5..37b113811 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "be9e29cb19c8fe84169fcb07f8f11e66bc9e6e0280efd4715c54818296f8a4a8" [[package]] name = "resvg" -version = "0.14.1" +version = "0.15.0" dependencies = [ "jpeg-decoder", "log", @@ -228,7 +228,7 @@ dependencies = [ [[package]] name = "resvg-capi" -version = "0.14.1" +version = "0.15.0" dependencies = [ "log", "resvg", @@ -385,7 +385,7 @@ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" [[package]] name = "usvg" -version = "0.14.1" +version = "0.15.0" dependencies = [ "base64", "data-url", diff --git a/Cargo.toml b/Cargo.toml index 3c1fcdcbe..0ee3c08fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg" -version = "0.14.1" +version = "0.15.0" authors = ["Reizner Evgeniy "] keywords = ["svg", "render", "raster", "skia"] license = "MPL-2.0" @@ -25,8 +25,8 @@ pico-args = "0.4" png = "0.16" rgb = "0.8" svgfilters = { path = "svgfilters", version = "0.3" } -tiny-skia = "0.5.0" -usvg = { path = "usvg", version = "0.14.1", default-features = false } +tiny-skia = "0.5" +usvg = { path = "usvg", version = "0.15.0", default-features = false } [dev-dependencies] once_cell = "1.5" diff --git a/c-api/Cargo.toml b/c-api/Cargo.toml index 08de344b1..91da8c2ba 100644 --- a/c-api/Cargo.toml +++ b/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resvg-capi" -version = "0.14.1" +version = "0.15.0" authors = ["Evgeniy Reizner "] keywords = ["svg", "render", "raster", "c-api"] license = "MPL-2.0" @@ -16,7 +16,7 @@ crate-type = ["cdylib", "staticlib"] log = "0.4" resvg = { path = "../" } usvg = { path = "../usvg", default-features = false } -tiny-skia = "0.5.0" +tiny-skia = "0.5" [features] default = ["text"] # enables SVG Text support diff --git a/c-api/ResvgQt.h b/c-api/ResvgQt.h index 8b60f7a66..1370e3445 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 14 -#define RESVG_QT_PATCH_VERSION 1 -#define RESVG_QT_VERSION "0.14.1" +#define RESVG_QT_MINOR_VERSION 15 +#define RESVG_QT_PATCH_VERSION 0 +#define RESVG_QT_VERSION "0.15.0" #include #include diff --git a/c-api/resvg.h b/c-api/resvg.h index 98e9b9d4f..acd58818f 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 14 -#define RESVG_PATCH_VERSION 1 -#define RESVG_VERSION "0.14.1" +#define RESVG_MINOR_VERSION 15 +#define RESVG_PATCH_VERSION 0 +#define RESVG_VERSION "0.15.0" #ifdef __cplusplus extern "C" { diff --git a/make-vendored.sh b/make-vendored.sh index dcb86e63c..e6f59d840 100755 --- a/make-vendored.sh +++ b/make-vendored.sh @@ -2,7 +2,7 @@ set -e -VERSION="0.14.1" +VERSION="0.15.0" git clone https://github.com/RazrFalcon/resvg resvg-$VERSION cd resvg-"$VERSION" diff --git a/src/lib.rs b/src/lib.rs index a20d0fee9..69390b643 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.14.1")] +#![doc(html_root_url = "https://docs.rs/resvg/0.15.0")] #![warn(missing_docs)] diff --git a/tools/explorer-thumbnailer/Cargo.toml b/tools/explorer-thumbnailer/Cargo.toml index 8120edeb4..3febc0a3e 100644 --- a/tools/explorer-thumbnailer/Cargo.toml +++ b/tools/explorer-thumbnailer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-thumbnailer" -version = "0.14.1" +version = "0.15.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 1bbfb3d2c..b62e3ef0a 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.14.1" -VersionInfoVersion="0.0.14.1" -AppVerName="resvg Explorer Extension 0.14.1" +AppVersion="0.15.0" +VersionInfoVersion="0.0.15.0" +AppVerName="resvg Explorer Extension 0.15.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 0fbf4829d..67cb35019 100644 --- a/usvg/Cargo.toml +++ b/usvg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usvg" -version = "0.14.1" +version = "0.15.0" authors = ["Evgeniy Reizner "] keywords = ["svg"] license = "MPL-2.0" diff --git a/usvg/src/lib.rs b/usvg/src/lib.rs index 3ca6ccc2e..2cc1533c6 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.14.1")] +#![doc(html_root_url = "https://docs.rs/usvg/0.15.0")] #![warn(missing_docs)] #![warn(missing_debug_implementations)] diff --git a/version-bump.md b/version-bump.md index c67621c21..74c426bf3 100644 --- a/version-bump.md +++ b/version-bump.md @@ -7,7 +7,6 @@ - c-api/ResvgQt.h - usvg/Cargo.toml - usvg/src/lib.rs -- usvg/tests/files/* - tools/explorer-thumbnailer/install/installer.iss - tools/explorer-thumbnailer/Cargo.toml - make-vendored.sh