Skip to content

Commit

Permalink
Release 0.2 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrea-c authored Feb 1, 2024
1 parent 38c4ae2 commit b47031c
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Run cargo publish dry run
- name: Run cargo publish dry run for library
run: cargo publish --dry-run -p bevy_animation_graph
- name: Run cargo publish dry run for editor
run: cargo publish --dry-run -p bevy_animation_graph_editor

# Run cargo fmt --all -- --check
format:
Expand Down
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@
members = ["crates/*", "examples/*"]
resolver = "2"

[workspace.package]
version = "0.2.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
repository = "https://github.com/mbrea-c/bevy_animation_graph"

[workspace.dependencies]
bevy = { version = "0.12.1" }
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![Crates.io](https://img.shields.io/crates/v/bevy_animation_graph) ![Crates.io](https://img.shields.io/crates/d/bevy_animation_graph)
![Crates.io](https://img.shields.io/crates/v/bevy_animation_graph_editor) ![Crates.io](https://img.shields.io/crates/d/bevy_animation_graph_editor)
[![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)

# Bevy Animation Graph
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_animation_graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "bevy_animation_graph"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/mbrea-c/bevy_animation_graph"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
description = "Animation graph library for the Bevy game engine"
keywords = ["bevy", "animation", "gamedev"]

Expand Down
12 changes: 6 additions & 6 deletions crates/bevy_animation_graph_editor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "bevy_animation_graph_editor"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/mbrea-c/bevy_animation_graph"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
repository = { workspace = true }
description = "Animation graph editor for the Bevy game engine"
keywords = ["bevy", "animation", "gamedev", "editor", "graph"]

[dependencies]
bevy = { workspace = true, features = ["file_watcher"] }
derivative = "2.2.0"
bevy_animation_graph = { path = "../bevy_animation_graph/" }
bevy_animation_graph = { path = "../bevy_animation_graph/", version = "0.2.0" }
clap = { version = "4.4.18", features = ["derive"] }
bevy-inspector-egui = "0.22.1"
ron = "0.8.1"
Expand Down

0 comments on commit b47031c

Please sign in to comment.