Skip to content

Commit

Permalink
Bevy 0.11 (#44)
Browse files Browse the repository at this point in the history
* Update Bevy version to 0.11.
* Update crate version to 0.3.
  • Loading branch information
joseph-gio authored Jul 10, 2023
1 parent 7cec2c4 commit 53ca7c1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<T>` 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.

Expand Down
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion proc-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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`"
Expand Down

0 comments on commit 53ca7c1

Please sign in to comment.