From cf6fe5502e1b6701a1dd4e8dc20f706a49d6a47c Mon Sep 17 00:00:00 2001 From: "Spencer C. Imbleau" Date: Sun, 26 May 2024 12:41:23 -0400 Subject: [PATCH] fix: obey semver (#15) Yank v0.1.1 and Publish as v0.2.0 --------- Co-authored-by: Daniel McNab <36049421+DJMcNab@users.noreply.github.com> --- CHANGELOG.md | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5189a50..1b632ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## Unreleased -## 0.1.1 +## 0.2.0 ### Added @@ -26,6 +26,7 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe - The image viewBox is now properly translated - `vello_svg::render_tree_with` no longer takes a transform parameter. This is to make it consistent with the documentation and `vello_svg::render_tree`. + ### Removed - MPL 2.0 is no longer a license requirement diff --git a/Cargo.toml b/Cargo.toml index 6629a3d..4796115 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["examples/with_winit", "examples/run_wasm", "examples/scenes"] [workspace.package] edition = "2021" -version = "0.1.1" +version = "0.2.0" license = "Apache-2.0 OR MIT" repository = "https://github.com/linebender/vello_svg"