Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jan 21, 2024
1 parent 9aa13eb commit c6fd7f4
Show file tree
Hide file tree
Showing 14 changed files with 34 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/chart-svg2.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 .github/chart.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion CHANGELOG.md
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.38.0] - 2024-01-21
### Added
- Each `usvg::Node` stores its absolute transform now.
`Node::abs_transform()` executes in constant time now.
Expand Down Expand Up @@ -46,6 +48,8 @@ This changelog also contains important changes in dependencies.
### Fixed
- Mark `mask-type` as a presentation attribute.
- Do not show needless warnings when parsing some attributes.
- `feImage` rendering with a non-default position.
Thanks to [@LaurenzV](https://github.com/LaurenzV).

## [0.37.0] - 2023-12-16
### Added
Expand Down Expand Up @@ -1035,7 +1039,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.37.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.38.0...HEAD
[0.38.0]: https://github.com/RazrFalcon/resvg/compare/v0.37.0...v0.38.0
[0.37.0]: https://github.com/RazrFalcon/resvg/compare/v0.36.0...v0.37.0
[0.36.0]: https://github.com/RazrFalcon/resvg/compare/v0.35.0...v0.36.0
[0.35.0]: https://github.com/RazrFalcon/resvg/compare/v0.34.1...v0.35.0
Expand Down
12 changes: 6 additions & 6 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 crates/c-api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "resvg-capi"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster", "c-api"]
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/c-api/ResvgQt.h
Expand Up @@ -14,9 +14,9 @@
#define RESVG_QT_H

#define RESVG_QT_MAJOR_VERSION 0
#define RESVG_QT_MINOR_VERSION 37
#define RESVG_QT_MINOR_VERSION 38
#define RESVG_QT_PATCH_VERSION 0
#define RESVG_QT_VERSION "0.37.0"
#define RESVG_QT_VERSION "0.38.0"

#include <cmath>

Expand Down
4 changes: 2 additions & 2 deletions crates/c-api/resvg.h
Expand Up @@ -17,9 +17,9 @@
#include <stdint.h>

#define RESVG_MAJOR_VERSION 0
#define RESVG_MINOR_VERSION 37
#define RESVG_MINOR_VERSION 38
#define RESVG_PATCH_VERSION 0
#define RESVG_VERSION "0.37.0"
#define RESVG_VERSION "0.38.0"

/**
* @brief List of possible errors.
Expand Down
4 changes: 2 additions & 2 deletions crates/resvg/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "resvg"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg", "render", "raster"]
license = "MPL-2.0"
Expand All @@ -23,7 +23,7 @@ png = { version = "0.17", optional = true }
rgb = "0.8"
svgtypes = "0.13"
tiny-skia = "0.11.3"
usvg = { path = "../usvg", version = "0.37.0", default-features = false }
usvg = { path = "../usvg", version = "0.38.0", default-features = false }

[dev-dependencies]
once_cell = "1.5"
Expand Down
4 changes: 2 additions & 2 deletions crates/usvg-parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "usvg-parser"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand All @@ -23,4 +23,4 @@ roxmltree = "0.19"
simplecss = "0.2"
siphasher = "0.3" # perfect hash implementation
svgtypes = "0.13"
usvg-tree = { path = "../usvg-tree", version = "0.37.0" }
usvg-tree = { path = "../usvg-tree", version = "0.38.0" }
4 changes: 2 additions & 2 deletions crates/usvg-text-layout/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "usvg-text-layout"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand All @@ -19,7 +19,7 @@ rustybuzz = "0.12"
unicode-bidi = "0.3"
unicode-script = "0.5"
unicode-vo = "0.1"
usvg-tree = { path = "../usvg-tree", version = "0.37.0" }
usvg-tree = { path = "../usvg-tree", version = "0.38.0" }

[features]
default = ["system-fonts", "memmap-fonts"]
Expand Down
2 changes: 1 addition & 1 deletion crates/usvg-tree/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "usvg-tree"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/usvg/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "usvg"
version = "0.37.0"
version = "0.38.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand All @@ -21,13 +21,13 @@ required-features = ["text", "system-fonts", "memmap-fonts"]
base64 = "0.21" # for embedded images
log = "0.4"
pico-args = { version = "0.5", features = ["eq-separator"] }
usvg-parser = { path = "../usvg-parser", version = "0.37.0" }
usvg-tree = { path = "../usvg-tree", version = "0.37.0" }
usvg-parser = { path = "../usvg-parser", version = "0.38.0" }
usvg-tree = { path = "../usvg-tree", version = "0.38.0" }
xmlwriter = "0.1"

[dependencies.usvg-text-layout]
path = "../usvg-text-layout"
version = "0.37.0"
version = "0.38.0"
default-features = false
optional = true

Expand Down
2 changes: 1 addition & 1 deletion tools/explorer-thumbnailer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "explorer-thumbnailer"
version = "0.37.0"
version = "0.38.0"
authors = ["gentoo90 <gentoo90@gmail.com>"]
license = "MPL-2.0"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions tools/explorer-thumbnailer/install/installer.iss
@@ -1,8 +1,8 @@
[Setup]
AppName="resvg Explorer Extension"
AppVersion="0.37.0"
VersionInfoVersion="0.0.37.0"
AppVerName="resvg Explorer Extension 0.37.0"
AppVersion="0.38.0"
VersionInfoVersion="0.0.38.0"
AppVerName="resvg Explorer Extension 0.38.0"
AppPublisher="Yevhenii Reizner"
AppPublisherURL=https://github.com/RazrFalcon/resvg
DefaultDirName="{pf}\resvg Explorer Extension"
Expand Down

0 comments on commit c6fd7f4

Please sign in to comment.