Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jun 3, 2020
1 parent 009c7b9 commit a471010
Show file tree
Hide file tree
Showing 43 changed files with 105 additions and 102 deletions.
52 changes: 26 additions & 26 deletions .github/chart.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 15 additions & 15 deletions .github/official_chart.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
This changelog also contains important changes in dependencies.

## [Unreleased]

## [0.9.1] - 2020-06-03
### Fixed
- Stack overflow when `enable-background` and `filter` are set on the same element.
- Grayscale PNG loading.
Expand Down Expand Up @@ -317,7 +319,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.9.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/RazrFalcon/resvg/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/RazrFalcon/resvg/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/RazrFalcon/resvg/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/RazrFalcon/resvg/compare/v0.6.1...v0.7.0
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg"
version = "0.9.0"
version = "0.9.1"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster"]
license = "MPL-2.0"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ A list of unsupported features can be found [here](docs/unsupported.md).
[SVG Tiny 1.2](https://www.w3.org/TR/SVGTiny12/) and [SVG 2.0](https://www.w3.org/TR/SVG2/)
are not supported and not planned.

Results of the static subset of the [SVG test suite](https://www.w3.org/Graphics/SVG/Test/20110816/):

![Chart1](./.github/official_chart.svg)

Results of the [resvg test suite](./svg-tests/README.md):

![Chart2](./.github/chart.svg)
Expand All @@ -49,6 +45,10 @@ You can find a complete table of supported features
[here](https://razrfalcon.github.io/resvg-test-suite/svg-support-table.html).
It also includes alternative libraries.

Results of the static subset of the [SVG test suite](https://www.w3.org/Graphics/SVG/Test/20110816/):

![Chart1](./.github/official_chart.svg)

## Performance

Comparing performance between different SVG rendering libraries is like comparing
Expand Down Expand Up @@ -122,7 +122,7 @@ All other dependencies aren't written by me for this project.

## Testing

We are using regression testing to test *resvg*.
We are using regression testing to test *resvg*.

Basically, we will download a previous
*resvg* version and check that the new one produces the same results
Expand Down
2 changes: 1 addition & 1 deletion bindings/resvg-qt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg-qt"
version = "0.9.0"
version = "0.9.1"
authors = ["Reizner Evgeniy <razrfalcon@gmail.com>"]
keywords = ["qt", "ffi"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion bindings/resvg-skia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg-skia"
version = "0.9.0"
version = "0.9.1"
authors = ["JaFenix <jspicer@phoenixcontact.com>", "Reizner Evgeniy <razrfalcon@gmail.com>"]
keywords = ["skia", "ffi"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg-capi"
version = "0.9.0"
version = "0.9.1"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster", "capi"]
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions capi/include/resvg.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

#define RESVG_MAJOR_VERSION 0
#define RESVG_MINOR_VERSION 9
#define RESVG_PATCH_VERSION 0
#define RESVG_VERSION "0.9.0"
#define RESVG_PATCH_VERSION 1
#define RESVG_VERSION "0.9.1"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion make-vendored.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

VERSION="0.9.0"
VERSION="0.9.1"

git clone https://github.com/RazrFalcon/resvg resvg-$VERSION
cd resvg-"$VERSION"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It can be used as a simple SVG to PNG converted.
And as an embeddable library to paint SVG on an application native canvas.
*/

#![doc(html_root_url = "https://docs.rs/resvg/0.9.0")]
#![doc(html_root_url = "https://docs.rs/resvg/0.9.1")]

#![forbid(unsafe_code)]
#![warn(missing_docs)]
Expand Down
3 changes: 1 addition & 2 deletions testing-tools/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ def regression_testing(backend):
if not os.path.exists(reg_work_dir):
os.mkdir(reg_work_dir)

regression_args = ['cargo', 'run', '--release', '--',
'--backend', backend, tests_dir, reg_work_dir]
regression_args = ['cargo', 'run', '--release', '--', '--backend', backend, reg_work_dir]

# Use a master branch for pull requests.
if not local_test and os.environ['TRAVIS_BRANCH'] == 'master':
Expand Down
6 changes: 3 additions & 3 deletions tools/explorer-thumbnailer/install/installer.iss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[Setup]
AppName="reSVG Explorer Extension"
AppVersion="0.9.0"
VersionInfoVersion="0.0.9.0"
AppVerName="reSVG Explorer Extension 0.9.0"
AppVersion="0.9.1"
VersionInfoVersion="0.0.9.1"
AppVerName="reSVG Explorer Extension 0.9.1"
AppPublisher="Evgeniy Reizner"
AppPublisherURL=https://github.com/RazrFalcon/resvg
DefaultDirName="{pf}\reSVG Explorer Extension"
Expand Down
2 changes: 1 addition & 1 deletion tools/rendersvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rendersvg"
version = "0.9.0"
version = "0.9.1"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tools/usvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usvg-cli"
version = "0.9.0"
version = "0.9.1"
authors = ["Reizner Evgeniy <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion usvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usvg"
version = "0.9.0"
version = "0.9.1"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion usvg/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0")]
#![doc(html_root_url = "https://docs.rs/usvg/0.9.1")]

#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
Expand Down
2 changes: 1 addition & 1 deletion usvg/tests/files/clippath-with-invalid-child-out.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion usvg/tests/files/clippath-with-invalid-children-out.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a471010

Please sign in to comment.