Skip to content

Commit

Permalink
Update to Bevy 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Nov 4, 2023
1 parent 7df2007 commit e542f86
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_common_assets"
version = "0.7.0"
version = "0.8.0"
authors = ["Niklas Eicker <git@nikl.me>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -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]
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e542f86

Please sign in to comment.