From e542f864fdae03be62640be22959279d6c075fdb Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Sat, 4 Nov 2023 20:57:04 +0100 Subject: [PATCH] Update to Bevy 0.12 --- CHANGELOG.md | 3 +++ Cargo.toml | 10 +++++----- README.md | 3 ++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4918b6b..76b0d47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## v0.8.0 - 04.11.2023 +- Update to Bevy 0.12 + ## v0.7.0 - 10.07.2023 - Update to Bevy 0.11 diff --git a/Cargo.toml b/Cargo.toml index 28b5062..579b6e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_common_assets" -version = "0.7.0" +version = "0.8.0" authors = ["Niklas Eicker "] edition = "2021" license = "MIT OR Apache-2.0" @@ -21,19 +21,19 @@ msgpack = ["dep:rmp-serde"] xml = ["dep:quick-xml"] [dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = ["bevy_asset"] } -serde_toml = { version = "0.7", package = "toml", optional = true } +bevy = { version = "0.12", 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 } serde_json = { version = "1", optional = true } rmp-serde = { version = "1", optional = true } thiserror = "1.0" -quick-xml = { version = "0.29", features = [ "serialize" ], optional = true } +quick-xml = { version = "0.31", features = [ "serialize" ], optional = true } serde = { version = "1" } anyhow = { version = "1" } [dev-dependencies] -bevy = { git = "https://github.com/bevyengine/bevy" } +bevy = { version = "0.12" } serde = { version = "1" } [package.metadata.docs.rs] diff --git a/README.md b/README.md index 46a2d64..8bc83a8 100644 --- a/README.md +++ b/README.md @@ -75,12 +75,13 @@ Compatibility of `bevy_common_assets` versions: | `bevy_common_assets` | `bevy` | |:---------------------|:-------| +| `0.8` | `0.12` | | `0.7` | `0.11` | | `0.5` - `0.6` | `0.10` | | `0.4` | `0.9` | | `0.3` | `0.8` | | `0.1` - `0.2` | `0.7` | -| `main` | `0.10` | +| `main` | `0.12` | | `bevy_main` | `main` | ## License