Skip to content

Commit

Permalink
Merge pull request #17 from brandon-reinhart/rev-0.8
Browse files Browse the repository at this point in the history
rev crate to 0.8
  • Loading branch information
brandon-reinhart authored Mar 6, 2024
2 parents ff0b74c + 7f053f0 commit 2e0aa19
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
[package]
name = "bevy_spine"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
description = "Spine plugin for Bevy utilizing rusty_spine"
homepage = "https://github.com/jabuwu/bevy_spine"
repository = "https://github.com/jabuwu/bevy_spine"
readme = "readme.md"
license-file = "LICENSE"
exclude = [
"assets/*",
]
exclude = ["assets/*"]

[dependencies]
rusty_spine = "0.7"
bevy = { version = "0.13", default-features = false, features = [ "bevy_render", "bevy_asset", "bevy_sprite" ] }
glam = { version = "0.25", features = [ "mint" ] }
bevy = { version = "0.13", default-features = false, features = [
"bevy_render",
"bevy_asset",
"bevy_sprite",
] }
glam = { version = "0.25", features = ["mint"] }
thiserror = "1.0.50"

[dev-dependencies]
Expand All @@ -23,6 +25,4 @@ bevy = { version = "0.13", default-features = true }

[workspace]
resolver = "2"
members = [
"ci"
]
members = ["ci"]
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.8.0
- Update to Bevy 0.13

# 0.7.0
- Update to Bevy 0.12
- Add `parent` to `SpineBone`
Expand Down
7 changes: 4 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ A Bevy Plugin for [Spine 4.1](http://esotericsoftware.com/), utilizing [rusty_sp

```
[dependencies]
bevy = "0.12"
bevy_spine = "0.7"
bevy = "0.13"
bevy_spine = "0.8"
```

[See online demos!](https://jabuwu.github.io/bevy_spine_demos/) ([source repo](https://github.com/jabuwu/bevy_spine_demos))
Expand All @@ -14,7 +14,8 @@ bevy_spine = "0.7"

| bevy_spine | rusty_spine | bevy | spine |
| ---------- | ----------- | ---- | ----- |
| main | 0.7 | 0.12 | 4.1 |
| main | 0.7 | 0.13 | 4.1 |
| 0.8 | 0.7 | 0.13 | 4.1 |
| 0.7 | 0.7 | 0.12 | 4.1 |
| 0.6 | 0.6 | 0.11 | 4.1 |
| 0.5 | 0.5 | 0.10 | 4.1 |
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! A Bevy 0.12 plugin for Spine 4.1
//! A Bevy 0.13 plugin for Spine 4.1
//!
//! Add [`SpinePlugin`] to your Bevy app and spawn a [`SpineBundle`] to get started!
Expand Down

0 comments on commit 2e0aa19

Please sign in to comment.