Skip to content

Commit fd841e1

Browse files
authored
Release v0.45.1 (#907)
1 parent 23563e7 commit fd841e1

11 files changed

Lines changed: 23 additions & 18 deletions

File tree

.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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ This changelog also contains important changes in dependencies.
1010

1111
This release has an MSRV of 1.65 for `usvg` and 1.67.1 for `resvg` and the C API.
1212

13+
### Added
14+
- Support SVGs without the xmlns attribute on the root. Thanks to [@JosefKuchar][].
15+
1316
### Removed
1417

1518
- tools/kde-dolphin-thumbnailer. This was never a released tool, and it doesn't support current versions of KDE/dolphin ([#897][] by [@DJMcNab][])
@@ -1279,10 +1282,12 @@ This release has an MSRV of 1.65 for `usvg` and 1.67.1 for `resvg` and the C API
12791282
[@DJMcNab]: https://github.com/DJMcNab
12801283
[@michabay05]: https://github.com/michabay05
12811284
[@Shnatsel]: https://github.com/Shnatsel
1285+
[@JosefKuchar]: https://github.com/JosefKuchar
12821286

12831287
[#897]: https://github.com/linebender/resvg/pull/897
12841288

1285-
[Unreleased]: https://github.com/linebender/resvg/compare/v0.45.0...HEAD
1289+
[Unreleased]: https://github.com/linebender/resvg/compare/v0.45.1...HEAD
1290+
[0.45.1]: https://github.com/linebender/resvg/compare/v0.45.0...v0.45.1
12861291
[0.45.0]: https://github.com/linebender/resvg/compare/v0.44.0...v0.45.0
12871292
[0.44.0]: https://github.com/linebender/resvg/compare/v0.43.0...v0.44.0
12881293
[0.43.0]: https://github.com/linebender/resvg/compare/v0.42.0...v0.43.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.45.0"
3+
version = "0.45.1"
44
keywords = ["svg", "render", "raster", "c-api"]
55
license.workspace = true
66
edition = "2021"

crates/c-api/ResvgQt.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
#define RESVG_QT_MAJOR_VERSION 0
1414
#define RESVG_QT_MINOR_VERSION 45
15-
#define RESVG_QT_PATCH_VERSION 0
16-
#define RESVG_QT_VERSION "0.45.0"
15+
#define RESVG_QT_PATCH_VERSION 1
16+
#define RESVG_QT_VERSION "0.45.1"
1717

1818
#include <cmath>
1919

crates/c-api/resvg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
#define RESVG_MAJOR_VERSION 0
1717
#define RESVG_MINOR_VERSION 45
18-
#define RESVG_PATCH_VERSION 0
19-
#define RESVG_VERSION "0.45.0"
18+
#define RESVG_PATCH_VERSION 1
19+
#define RESVG_VERSION "0.45.1"
2020

2121
/**
2222
* @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.45.0"
3+
version = "0.45.1"
44
keywords = ["svg", "render", "raster"]
55
license.workspace = true
66
edition = "2021"
@@ -22,7 +22,7 @@ pico-args = { version = "0.5", features = ["eq-separator"] }
2222
rgb = "0.8"
2323
svgtypes = "0.15.3"
2424
tiny-skia = "0.11.4"
25-
usvg = { path = "../usvg", version = "0.45.0", default-features = false }
25+
usvg = { path = "../usvg", version = "0.45.1", default-features = false }
2626
zune-jpeg = { version = "0.4", optional = true }
2727

2828
[dev-dependencies]

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.45.0"
3+
version = "0.45.1"
44
keywords = ["svg"]
55
license.workspace = true
66
edition = "2021"

tools/explorer-thumbnailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "explorer-thumbnailer"
3-
version = "0.45.0"
3+
version = "0.45.1"
44
license.workspace = true
55
edition = "2021"
66
publish = false

0 commit comments

Comments
 (0)