diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a0871f..f478dc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ # Changelog +## Version 0.3 (Bevy 0.11) + +* Added support for Bevy 0.11. +* Updated the `syn` crate to version 2.0. +* Trait queries now use bevy's built-in `Mut` type for change detection; +this crate's reimplementation of this type has been removed. + ## Version 0.2.1 -### FIxed +### Fixed * Fixed change detection reporting for trait queries. diff --git a/Cargo.toml b/Cargo.toml index 82ddccb..fa4343b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy-trait-query" -version = "0.2.1" +version = "0.3.0" edition = "2021" description = "Implementation of trait queries for the bevy game engine" @@ -12,11 +12,10 @@ categories = ["game-development"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bevy-trait-query-impl = { path = "proc-macro", version = "0.2" } +bevy-trait-query-impl = { path = "proc-macro", version = "0.3" } [dependencies.bevy] -git = "https://github.com/bevyengine/bevy" -rev = "aeeb20ec4c43db07c2690ce926169ed9d6550d93" +version = "0.11" default-features = false [dev-dependencies] diff --git a/README.md b/README.md index cc43708..81bcffa 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Before using this crate, you should be familiar with bevy: https://bevyengine.or | Bevy Version | [Crate Version](CHANGELOG.md) | |--------------|---------------| +| 0.11 | 0.3 | | 0.10 | 0.2 | | 0.9 | 0.1 | | 0.8 | 0.0.3 | diff --git a/proc-macro/Cargo.toml b/proc-macro/Cargo.toml index 7fe0992..4e28f23 100644 --- a/proc-macro/Cargo.toml +++ b/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy-trait-query-impl" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "Procedural macro for `bevy-trait-query`"