diff --git a/CHANGELOG.md b/CHANGELOG.md index c1e9b9a..a95493a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.10.0 - 18.02.2024 +- Update to Bevy 0.13 + ## v0.9.1 - 17.01.2024 - CsvAssetPlugin supports configuring the delimiter with `with_delimiter` diff --git a/Cargo.toml b/Cargo.toml index deb8be1..97f7d63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_common_assets" -version = "0.9.1" +version = "0.10.0" authors = ["Niklas Eicker "] edition = "2021" license = "MIT OR Apache-2.0" @@ -22,7 +22,7 @@ xml = ["dep:quick-xml"] csv = ["dep:csv"] [dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", version = "0.12", default-features = false, features = ["bevy_asset"] } +bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = ["bevy_asset"] } serde_toml = { version = "0.8", package = "toml", optional = true } serde_ron = { version = "0.8", package = "ron", optional = true } serde_yaml = { version = "0.9", optional = true } @@ -35,7 +35,7 @@ serde = { version = "1" } anyhow = { version = "1" } [dev-dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", version = "0.12" } +bevy = { git = "https://github.com/bevyengine/bevy" } serde = { version = "1" } [package.metadata.docs.rs]