Skip to content

Commit b47031c

Browse files
authored
Release 0.2 (#31)
1 parent 38c4ae2 commit b47031c

File tree

5 files changed

+22
-12
lines changed

5 files changed

+22
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,10 @@ jobs:
8484
uses: dtolnay/rust-toolchain@stable
8585
- name: Install Dependencies
8686
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
87-
- name: Run cargo publish dry run
87+
- name: Run cargo publish dry run for library
8888
run: cargo publish --dry-run -p bevy_animation_graph
89+
- name: Run cargo publish dry run for editor
90+
run: cargo publish --dry-run -p bevy_animation_graph_editor
8991

9092
# Run cargo fmt --all -- --check
9193
format:

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@
22
members = ["crates/*", "examples/*"]
33
resolver = "2"
44

5+
[workspace.package]
6+
version = "0.2.0"
7+
license = "MIT OR Apache-2.0"
8+
readme = "README.md"
9+
edition = "2021"
10+
repository = "https://github.com/mbrea-c/bevy_animation_graph"
11+
512
[workspace.dependencies]
613
bevy = { version = "0.12.1" }

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
![Crates.io](https://img.shields.io/crates/v/bevy_animation_graph) ![Crates.io](https://img.shields.io/crates/d/bevy_animation_graph)
2+
![Crates.io](https://img.shields.io/crates/v/bevy_animation_graph_editor) ![Crates.io](https://img.shields.io/crates/d/bevy_animation_graph_editor)
23
[![CI](https://github.com/mbrea-c/bevy_animation_graph/actions/workflows/ci.yaml/badge.svg)](https://github.com/mbrea-c/bevy_animation_graph/actions/workflows/ci.yaml)
34

45
# Bevy Animation Graph

crates/bevy_animation_graph/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "bevy_animation_graph"
3-
version = "0.1.0"
4-
edition = "2021"
5-
license = "MIT OR Apache-2.0"
6-
readme = "README.md"
7-
repository = "https://github.com/mbrea-c/bevy_animation_graph"
3+
version = { workspace = true }
4+
edition = { workspace = true }
5+
license = { workspace = true }
6+
readme = { workspace = true }
7+
repository = { workspace = true }
88
description = "Animation graph library for the Bevy game engine"
99
keywords = ["bevy", "animation", "gamedev"]
1010

crates/bevy_animation_graph_editor/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "bevy_animation_graph_editor"
3-
version = "0.1.0"
4-
edition = "2021"
5-
license = "MIT OR Apache-2.0"
6-
readme = "README.md"
7-
repository = "https://github.com/mbrea-c/bevy_animation_graph"
3+
version = { workspace = true }
4+
edition = { workspace = true }
5+
license = { workspace = true }
6+
readme = { workspace = true }
7+
repository = { workspace = true }
88
description = "Animation graph editor for the Bevy game engine"
99
keywords = ["bevy", "animation", "gamedev", "editor", "graph"]
1010

1111
[dependencies]
1212
bevy = { workspace = true, features = ["file_watcher"] }
1313
derivative = "2.2.0"
14-
bevy_animation_graph = { path = "../bevy_animation_graph/" }
14+
bevy_animation_graph = { path = "../bevy_animation_graph/", version = "0.2.0" }
1515
clap = { version = "4.4.18", features = ["derive"] }
1616
bevy-inspector-egui = "0.22.1"
1717
ron = "0.8.1"

0 commit comments

Comments
 (0)