Skip to content

Commit 860466f

Browse files
authored
Prepare for 0.7 release (#94)
1 parent b14a447 commit 860466f

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ members = ["crates/*", "examples/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.6.0"
6+
version = "0.7.0"
77
license = "MIT OR Apache-2.0"
88
readme = "README.md"
99
edition = "2024"
1010
repository = "https://github.com/mbrea-c/bevy_animation_graph"
1111

1212
[workspace.dependencies]
13+
bevy_animation_graph_proc_macros = { version = "0.7.0", path = "./crates/bevy_animation_graph_proc_macros" }
14+
bevy_animation_graph = { version = "0.7.0", path = "./crates/bevy_animation_graph" }
15+
1316
bevy = { version = "0.16" }
1417
ron = "0.8.1"

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,15 @@ This project is divided in two crates:
108108

109109
## Version table
110110

111-
| `bevy` | `bevy_animation_graph` | `bevy_animation_graph_editor` |
112-
| ------ | ---------------------- | ----------------------------- |
113-
| 0.16 | master | master |
114-
| 0.15 | 0.6 | 0.6 |
115-
| 0.14 | 0.5 | 0.5 |
116-
| 0.13 | 0.4 | 0.4 |
117-
| 0.13 | 0.3 | 0.3 |
118-
| 0.12 | 0.2 | 0.2 |
111+
| `bevy` | `bevy_animation_graph` |
112+
| ------ | ---------------------- |
113+
| 0.16 | master |
114+
| 0.16 | 0.7 |
115+
| 0.15 | 0.6 |
116+
| 0.14 | 0.5 |
117+
| 0.13 | 0.4 |
118+
| 0.13 | 0.3 |
119+
| 0.12 | 0.2 |
119120

120121
## Usage and examples
121122

crates/bevy_animation_graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ indexmap = { version = "2.2.1", features = ["serde"] }
1717
regex = "1.10.3"
1818
uuid = "1.0"
1919
rmp-serde = "1.3.0"
20-
bevy_animation_graph_proc_macros = { version = "0.6.0", path = "../bevy_animation_graph_proc_macros" }
20+
bevy_animation_graph_proc_macros = { workspace = true }

crates/bevy_animation_graph_editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["bevy", "animation", "gamedev", "editor", "graph"]
1212
bevy = { workspace = true, features = ["file_watcher"] }
1313
ron = { workspace = true }
1414
derivative = "2.2.0"
15-
bevy_animation_graph = { version = "0.6.0", path = "../bevy_animation_graph" }
15+
bevy_animation_graph = { workspace = true }
1616
clap = { version = "4.4.18", features = ["derive"] }
1717

1818
egui_dock = "0.16"

0 commit comments

Comments
 (0)