Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jan 18, 2020
1 parent 2094b27 commit 55888a5
Show file tree
Hide file tree
Showing 41 changed files with 134 additions and 135 deletions.
71 changes: 37 additions & 34 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.
71 changes: 37 additions & 34 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.0] - 2020-01-18
### Added
- `feConvolveMatrix`, `feMorphology`, `feDisplacementMap`, `feTurbulence`,
`feDiffuseLighting` and `feSpecularLighting` support.
Expand Down Expand Up @@ -300,7 +302,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.8.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.9.0...HEAD
[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
[0.6.1]: https://github.com/RazrFalcon/resvg/compare/v0.6.0...v0.6.1
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.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg"
version = "0.8.0"
version = "0.9.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster"]
license = "MPL-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ travis-ci = { repository = "RazrFalcon/resvg" }
[dependencies]
log = "0.4"
rgb = "0.8"
usvg = { path = "usvg", version = "0.8", default-features = false }
usvg = { path = "usvg", version = "0.9", default-features = false }
png = { version = "0.15", default-features = false }
jpeg-decoder = { version = "0.1.15", default-features = false }
svgfilters = { path = "svgfilters", version = "0.1" }
Expand All @@ -37,13 +37,13 @@ svgfilters = { path = "svgfilters", version = "0.1" }
cairo-rs = { version = "0.8.0", default-features = false, features = ["png"], optional = true }

# qt backend
resvg-qt = { path = "bindings/resvg-qt", version = "0.8", optional = true }
resvg-qt = { path = "bindings/resvg-qt", version = "0.9", optional = true }

# raqote backend
raqote = { version = "0.7.8", default-features = false, optional = true }

# skia backend
resvg-skia = { path = "bindings/resvg-skia", version = "0.8", optional = true }
resvg-skia = { path = "bindings/resvg-skia", version = "0.9", optional = true }

[features]
default = ["text"]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ For more specific details checkout [benches/README.md](./benches/README.md)
- [`rctree`](https://github.com/RazrFalcon/rctree) – a DOM-like tree
- [`resvg-qt`](./bindings/resvg-qt) – minimal bindings to [Qt]
- [`resvg-skia`](./bindings/resvg-skia) – minimal bindings to [Skia]
- [`svgfilters`](./svgfilters) – a collection of SVG filters

All other dependencies aren't written by me for this project.

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.8.0"
version = "0.9.0"
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.8.0"
version = "0.9.0"
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.8.0"
version = "0.9.0"
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 @@ -23,9 +23,9 @@


#define RESVG_MAJOR_VERSION 0
#define RESVG_MINOR_VERSION 8
#define RESVG_MINOR_VERSION 9
#define RESVG_PATCH_VERSION 0
#define RESVG_VERSION "0.8.0"
#define RESVG_VERSION "0.9.0"

#ifdef __cplusplus
extern "C" {
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.8.0")]
#![doc(html_root_url = "https://docs.rs/resvg/0.9.0")]

#![forbid(unsafe_code)]
#![warn(missing_docs)]
Expand Down
11 changes: 0 additions & 11 deletions testing-tools/regression/allow-raqote.txt
Original file line number Diff line number Diff line change
@@ -1,11 +0,0 @@
a-fill-opacity-006.svg
a-stroke-opacity-006.svg
a-text-decoration-001.svg
a-text-decoration-002.svg
a-text-decoration-003.svg
a-text-decoration-004.svg
a-text-decoration-005.svg
a-text-decoration-006.svg
a-text-decoration-007.svg
a-text-decoration-008.svg
a-text-decoration-011.svg
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.8.0"
VersionInfoVersion="0.0.8.0"
AppVerName="reSVG Explorer Extension 0.8.0"
AppVersion="0.9.0"
VersionInfoVersion="0.0.9.0"
AppVerName="reSVG Explorer Extension 0.9.0"
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.8.0"
version = "0.9.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster"]
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions tools/usvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usvg-cli"
version = "0.8.0"
version = "0.9.0"
authors = ["Reizner Evgeniy <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand All @@ -16,7 +16,7 @@ travis-ci = { repository = "RazrFalcon/resvg" }
fern = "=0.5.8" # fixed version without chrono
log = "0.4"
pico-args = "0.2"
usvg = { version = "0.8", path = "../../usvg", default-features = false }
usvg = { version = "0.9", path = "../../usvg", default-features = false }

[features]
default = ["text"]
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.8.0"
version = "0.9.0"
authors = ["Evgeniy Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand Down

0 comments on commit 55888a5

Please sign in to comment.