Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Apr 3, 2024
1 parent a75ee14 commit fb7e285
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/chart-svg2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 14 additions & 14 deletions .github/chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
This changelog also contains important changes in dependencies.

## [Unreleased]

## [0.41.0] - 2024-04-03
### Added
- `context-fill` and `context-stroke` support.
Thanks to [@LaurenzV](https://github.com/LaurenzV).
- `usvg::Text::layouted()`, which returns a list of glyph IDs.
It can be used to manually draw glyphs, unlike with `usvg::Text::flattened()`, which returns
just vector paths.
Thanks to [@LaurenzV](https://github.com/LaurenzV).

### Fixed
- Missing text when a `text` element uses multiple fonts and one of them produces ligatures.
- Absolute transform propagation during `use` resolving.
Expand Down Expand Up @@ -1122,7 +1132,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.40.0...HEAD
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.41.0...HEAD
[0.41.0]: https://github.com/RazrFalcon/resvg/compare/v0.40.0...v0.41.0
[0.40.0]: https://github.com/RazrFalcon/resvg/compare/v0.39.0...v0.40.0
[0.39.0]: https://github.com/RazrFalcon/resvg/compare/v0.38.0...v0.39.0
[0.38.0]: https://github.com/RazrFalcon/resvg/compare/v0.37.0...v0.38.0
Expand Down
6 changes: 3 additions & 3 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg-capi"
version = "0.40.0"
version = "0.41.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
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#define RESVG_QT_H

#define RESVG_QT_MAJOR_VERSION 0
#define RESVG_QT_MINOR_VERSION 40
#define RESVG_QT_MINOR_VERSION 41
#define RESVG_QT_PATCH_VERSION 0
#define RESVG_QT_VERSION "0.40.0"
#define RESVG_QT_VERSION "0.41.0"

#include <cmath>

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

#define RESVG_MAJOR_VERSION 0
#define RESVG_MINOR_VERSION 40
#define RESVG_MINOR_VERSION 41
#define RESVG_PATCH_VERSION 0
#define RESVG_VERSION "0.40.0"
#define RESVG_VERSION "0.41.0"

/**
* @brief List of possible errors.
Expand Down
4 changes: 2 additions & 2 deletions crates/resvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resvg"
version = "0.40.0"
version = "0.41.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.15.0"
tiny-skia = "0.11.4"
usvg = { path = "../usvg", version = "0.40.0", default-features = false }
usvg = { path = "../usvg", version = "0.41.0", default-features = false }

[dev-dependencies]
once_cell = "1.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/usvg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usvg"
version = "0.40.0"
version = "0.41.0"
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
keywords = ["svg"]
license = "MPL-2.0"
Expand Down
3 changes: 0 additions & 3 deletions crates/usvg/src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -875,9 +875,6 @@ impl Node {

/// Returns node's absolute transform.
///
/// If a current node doesn't support transformation - a default
/// transform will be returned.
///
/// This method is cheap since absolute transforms are already resolved.
pub fn abs_transform(&self) -> Transform {
match self {
Expand Down
2 changes: 1 addition & 1 deletion tools/explorer-thumbnailer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "explorer-thumbnailer"
version = "0.39.0"
version = "0.41.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
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[Setup]
AppName="resvg Explorer Extension"
AppVersion="0.40.0"
VersionInfoVersion="0.0.40.0"
AppVerName="resvg Explorer Extension 0.40.0"
AppVersion="0.41.0"
VersionInfoVersion="0.0.41.0"
AppVerName="resvg Explorer Extension 0.41.0"
AppPublisher="Yevhenii Reizner"
AppPublisherURL=https://github.com/RazrFalcon/resvg
DefaultDirName="{pf}\resvg Explorer Extension"
Expand Down

0 comments on commit fb7e285

Please sign in to comment.