diff --git a/CHANGELOG.md b/CHANGELOG.md index fa00c19..2c35fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index 9cf9010..7e8844b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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", @@ -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" diff --git a/deny.toml b/deny.toml index 46c1d0f..ddb2e20 100644 --- a/deny.toml +++ b/deny.toml @@ -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]]