Skip to content

Commit

Permalink
chore: bump versions (#55)
Browse files Browse the repository at this point in the history
v0.4.1
  • Loading branch information
simbleau committed May 26, 2024
1 parent 3b545da commit eb4d7a7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"]
3 changes: 1 addition & 2 deletions src/integrations/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}

0 comments on commit eb4d7a7

Please sign in to comment.