Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump #859

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
2 changes: 1 addition & 1 deletion .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.
5 changes: 4 additions & 1 deletion CHANGELOG.md
LaurenzV marked this conversation as resolved.
Show resolved Hide resolved
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.45.0] - 2024-12-12
### Added
- Added support for the `background-color` attribute.
- Add support for additional `image-rendering` attributes.
Expand Down Expand Up @@ -1245,7 +1247,8 @@ This changelog also contains important changes in dependencies.
### Fixed
- `font-size` attribute inheritance during `use` resolving.

[Unreleased]: https://github.com/linebender/resvg/compare/v0.44.0...HEAD
[Unreleased]: https://github.com/linebender/resvg/compare/v0.45.0...HEAD
[0.45.0]: https://github.com/linebender/resvg/compare/v0.44.0...v0.45.0
[0.44.0]: https://github.com/linebender/resvg/compare/v0.43.0...v0.44.0
[0.43.0]: https://github.com/linebender/resvg/compare/v0.42.0...v0.43.0
[0.42.0]: https://github.com/linebender/resvg/compare/v0.41.0...v0.42.0
Expand Down
42 changes: 21 additions & 21 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.44.0"
version = "0.45.0"
keywords = ["svg", "render", "raster", "c-api"]
license.workspace = true
edition = "2021"
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 @@ -11,9 +11,9 @@
#define RESVG_QT_H

#define RESVG_QT_MAJOR_VERSION 0
#define RESVG_QT_MINOR_VERSION 44
#define RESVG_QT_MINOR_VERSION 45
#define RESVG_QT_PATCH_VERSION 0
#define RESVG_QT_VERSION "0.44.0"
#define RESVG_QT_VERSION "0.45.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 @@ -14,9 +14,9 @@
#include <stdint.h>

#define RESVG_MAJOR_VERSION 0
#define RESVG_MINOR_VERSION 44
#define RESVG_MINOR_VERSION 45
#define RESVG_PATCH_VERSION 0
#define RESVG_VERSION "0.44.0"
#define RESVG_VERSION "0.45.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.44.0"
version = "0.45.0"
keywords = ["svg", "render", "raster"]
license.workspace = true
edition = "2021"
Expand All @@ -22,7 +22,7 @@ pico-args = { version = "0.5", features = ["eq-separator"] }
rgb = "0.8"
svgtypes = "0.15.2"
tiny-skia = "0.11.4"
usvg = { path = "../usvg", version = "0.44.0", default-features = false }
usvg = { path = "../usvg", version = "0.45.0", default-features = false }
zune-jpeg = { version = "0.4", optional = true }

[dev-dependencies]
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.44.0"
version = "0.45.0"
keywords = ["svg"]
license.workspace = true
edition = "2021"
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.44.0"
version = "0.45.0"
license.workspace = true
edition = "2021"
publish = false
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.44.0"
VersionInfoVersion="0.0.44.0"
AppVerName="resvg Explorer Extension 0.44.0"
AppVersion="0.45.0"
VersionInfoVersion="0.0.45.0"
AppVerName="resvg Explorer Extension 0.45.0"
AppPublisher="The Resvg Authors"
AppPublisherURL=https://github.com/linebender/resvg
DefaultDirName="{pf}\resvg Explorer Extension"
Expand Down
Loading