From eb4d7a7ba8a516b8b3a5550c7caa511f328fa38c Mon Sep 17 00:00:00 2001 From: "Spencer C. Imbleau" Date: Sun, 26 May 2024 02:50:25 -0400 Subject: [PATCH] chore: bump versions (#55) v0.4.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 12 ++++-------- src/integrations/error.rs | 3 +-- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1b69bd..26f016d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe ## Unreleased +## 0.4.1 + +### Fixed + +- Updated to vello_svg v0.1.1, fixing viewboxes. +- Updates to velato v0.1.1, fixing viewboxes. + ## 0.4.0 ### Added diff --git a/Cargo.toml b/Cargo.toml index a150183..682d60f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.4.0" +version = "0.4.1" license = "MIT OR Apache-2.0" repository = "https://github.com/linebender/bevy_vello" @@ -50,19 +50,15 @@ repository.workspace = true [dependencies] bevy = { workspace = true } vello = "0.1.0" -vello_svg = "0.1.0" -velato = "0.1.0" +vello_svg = "0.1.1" +velato = "0.1.1" once_cell = "1.19.0" -# TODO: Remove after https://github.com/linebender/velato/pull/19 -serde_json = { optional = true, version = "1" } - [dev-dependencies] wasm-bindgen-test = "0.3.42" [features] default = [] svg = [] -# TODO: Remove `serde_json` after https://github.com/linebender/velato/pull/19 -lottie = ["serde_json"] +lottie = [] experimental-dotLottie = ["lottie"] diff --git a/src/integrations/error.rs b/src/integrations/error.rs index 4def67e..22f9bac 100644 --- a/src/integrations/error.rs +++ b/src/integrations/error.rs @@ -11,6 +11,5 @@ pub enum VectorLoaderError { Usvg(#[from] vello_svg::usvg::Error), #[cfg(feature = "lottie")] #[error("Could not parse lottie: {0}")] - // TODO: Replace with `VelatoError` after https://github.com/linebender/velato/pull/19. - Velato(#[from] serde_json::Error), + Velato(#[from] velato::VelatoError), }