Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rev crate to 0.8 #17

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading