Skip to content

Commit

Permalink
Update v0.13.0 (#263)
Browse files Browse the repository at this point in the history
* Allow `Unicode-3.0` license

* Update v0.13.0
  • Loading branch information
Nilirad authored Nov 30, 2024
1 parent d8c28bc commit a2d777a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.13.0-rc.2
## 0.13.0
- Support for Bevy 0.15.0-rc.3.
- `Rectangle` now supports border radii (see `rectangle.rs` example).
- Removed deprecated `SpatialBundle` from `ShapeBundle`: `Transform` and `Visibility` are now added separately.
Expand Down
9 changes: 3 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
name = "bevy_prototype_lyon"
readme = "README.md"
repository = "https://github.com/Nilirad/bevy_prototype_lyon/"
version = "0.13.0-rc.2"
version = "0.13.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy = { version = "0.15.0-rc.3", default-features = false, features = [
bevy = { version = "0.15.0", default-features = false, features = [
"bevy_sprite",
"bevy_render",
"bevy_core_pipeline",
Expand All @@ -24,7 +24,4 @@ lyon_algorithms = "1"
svgtypes = "0.15"

[dev-dependencies]
bevy = { version = "0.15.0-rc.3", default-features = false, features = [
"x11",
"bevy_asset",
] }
bevy = "0.15.0"
2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ allow = [
"CC0-1.0",
]
exceptions = [
{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] },
{ name = "unicode-ident", allow = ["Unicode-DFS-2016", "Unicode-3.0"] },
]

[[licenses.clarify]]
Expand Down

0 comments on commit a2d777a

Please sign in to comment.