Skip to content

Commit 6b973b2

Browse files
committed
Version bump.
1 parent b50e3c6 commit 6b973b2

File tree

10 files changed

+20
-17
lines changed

10 files changed

+20
-17
lines changed

.github/chart-svg2.svg

Lines changed: 1 addition & 1 deletion
Loading

.github/chart.svg

Lines changed: 1 addition & 1 deletion
Loading

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
This changelog also contains important changes in dependencies.
88

99
## [Unreleased]
10+
11+
## [0.40.0] - 2024-02-17
1012
### Added
1113
- `usvg::Tree` is `Send + Sync` compatible now.
1214
- `usvg::WriteOptions::preserve_text` to control how `usvg` generates an SVG.
@@ -1115,7 +1117,8 @@ This changelog also contains important changes in dependencies.
11151117
### Fixed
11161118
- `font-size` attribute inheritance during `use` resolving.
11171119

1118-
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.39.0...HEAD
1120+
[Unreleased]: https://github.com/RazrFalcon/resvg/compare/v0.40.0...HEAD
1121+
[0.40.0]: https://github.com/RazrFalcon/resvg/compare/v0.39.0...v0.40.0
11191122
[0.39.0]: https://github.com/RazrFalcon/resvg/compare/v0.38.0...v0.39.0
11201123
[0.38.0]: https://github.com/RazrFalcon/resvg/compare/v0.37.0...v0.38.0
11211124
[0.37.0]: https://github.com/RazrFalcon/resvg/compare/v0.36.0...v0.37.0

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/c-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "resvg-capi"
3-
version = "0.39.0"
3+
version = "0.40.0"
44
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
55
keywords = ["svg", "render", "raster", "c-api"]
66
license = "MPL-2.0"

crates/c-api/ResvgQt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
#define RESVG_QT_H
1515

1616
#define RESVG_QT_MAJOR_VERSION 0
17-
#define RESVG_QT_MINOR_VERSION 39
17+
#define RESVG_QT_MINOR_VERSION 40
1818
#define RESVG_QT_PATCH_VERSION 0
19-
#define RESVG_QT_VERSION "0.39.0"
19+
#define RESVG_QT_VERSION "0.40.0"
2020

2121
#include <cmath>
2222

crates/c-api/resvg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
#include <stdint.h>
1818

1919
#define RESVG_MAJOR_VERSION 0
20-
#define RESVG_MINOR_VERSION 39
20+
#define RESVG_MINOR_VERSION 40
2121
#define RESVG_PATCH_VERSION 0
22-
#define RESVG_VERSION "0.39.0"
22+
#define RESVG_VERSION "0.40.0"
2323

2424
/**
2525
* @brief List of possible errors.

crates/resvg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "resvg"
3-
version = "0.39.0"
3+
version = "0.40.0"
44
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
55
keywords = ["svg", "render", "raster"]
66
license = "MPL-2.0"
@@ -23,7 +23,7 @@ png = { version = "0.17", optional = true }
2323
rgb = "0.8"
2424
svgtypes = "0.14.0"
2525
tiny-skia = "0.11.4"
26-
usvg = { path = "../usvg", version = "0.39.0", default-features = false }
26+
usvg = { path = "../usvg", version = "0.40.0", default-features = false }
2727

2828
[dev-dependencies]
2929
once_cell = "1.5"

crates/usvg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "usvg"
3-
version = "0.39.0"
3+
version = "0.40.0"
44
authors = ["Yevhenii Reizner <razrfalcon@gmail.com>"]
55
keywords = ["svg"]
66
license = "MPL-2.0"

tools/explorer-thumbnailer/install/installer.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[Setup]
22
AppName="resvg Explorer Extension"
3-
AppVersion="0.39.0"
4-
VersionInfoVersion="0.0.39.0"
5-
AppVerName="resvg Explorer Extension 0.39.0"
3+
AppVersion="0.40.0"
4+
VersionInfoVersion="0.0.40.0"
5+
AppVerName="resvg Explorer Extension 0.40.0"
66
AppPublisher="Yevhenii Reizner"
77
AppPublisherURL=https://github.com/RazrFalcon/resvg
88
DefaultDirName="{pf}\resvg Explorer Extension"

0 commit comments

Comments
 (0)