diff --git a/CHANGELOG.md b/CHANGELOG.md index 5562e503..737e8041 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.10.0] ### Added - Added ability to list the available fonts found by svg2pdf. Thanks to [@rgreinho](https://github.com/rgreinho). @@ -18,4 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bumped resvg to v0.37 and fontdb to 0.16. - (Internal) reworked the test suite. -- (Internal) synced test suite with resvg test suite. \ No newline at end of file +- (Internal) synced test suite with resvg test suite. + +[Unreleased]: https://github.com/typst/svg2pdf/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/typst/svg2pdf/compare/v0.9.1...v0.10.0 diff --git a/Cargo.lock b/Cargo.lock index 147fd28b..4462334b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1202,7 +1202,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "svg2pdf" -version = "0.9.1" +version = "0.10.0" dependencies = [ "image", "miniz_oxide", @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "svg2pdf-cli" -version = "0.9.1" +version = "0.10.0" dependencies = [ "clap", "clap_complete", @@ -1231,7 +1231,7 @@ dependencies = [ [[package]] name = "svg2pdf-tests" -version = "0.9.1" +version = "0.10.0" dependencies = [ "fontdb", "image", diff --git a/Cargo.toml b/Cargo.toml index 1538a472..23ba9c26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = ["cli"] resolver = "2" [workspace.package] -version = "0.9.1" +version = "0.10.0" authors = ["Martin Haug ", "Laurenz Stampfl "] edition = "2021" repository = "https://github.com/typst/svg2pdf" @@ -12,7 +12,7 @@ readme = "README.md" license = "MIT OR Apache-2.0" [workspace.dependencies] -svg2pdf = { path = ".", version = "0.9.1" } +svg2pdf = { path = ".", version = "0.10.0" } clap = { version = "4.4.2", features = ["derive"] } clap_complete = "4.4.3" clap_mangen = "0.2.14"