From 788b173fc9251f9def7908f4dac8bea6eff9a39f Mon Sep 17 00:00:00 2001 From: jabu Date: Sun, 5 May 2024 17:52:31 -0500 Subject: [PATCH] 0.9.0 --- Cargo.toml | 2 +- changelog.md | 8 +++++++- readme.md | 4 +++- src/lib.rs | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 613b477..ed1915c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_spine" -version = "0.8.0" +version = "0.9.0" edition = "2021" description = "Spine plugin for Bevy utilizing rusty_spine" homepage = "https://github.com/jabuwu/bevy_spine" diff --git a/changelog.md b/changelog.md index 9808aa9..5409855 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,10 @@ -# 0.8.1 (UNRELEASED) +# 0.9.0 +- Upgrade runtime to Spine 4.2 +- Update to `rusty_spine` 0.8 + - Add constraint APIs + - Add physics support + +# 0.8.1 - Fix dark color applying incorrectly with premultiplied alpha # 0.8.0 diff --git a/readme.md b/readme.md index 55ac7a1..17d0523 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,7 @@ A Bevy Plugin for [Spine](http://esotericsoftware.com/), utilizing [rusty_spine] ``` [dependencies] bevy = "0.13" -bevy_spine = "0.8" +bevy_spine = "0.9" ``` [See online demos!](https://jabuwu.github.io/bevy_spine_demos/) ([source repo](https://github.com/jabuwu/bevy_spine_demos)) @@ -15,6 +15,8 @@ bevy_spine = "0.8" | bevy_spine | rusty_spine | bevy | spine | | ---------- | ----------- | ---- | ----- | | main | 0.8 | 0.13 | 4.2 | +| 0.9 | 0.8 | 0.13 | 4.2 | +| 0.8 | 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 | diff --git a/src/lib.rs b/src/lib.rs index 4d55ce3..1ec994b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! A Bevy 0.13 plugin for Spine 4.1 +//! A Bevy 0.13 plugin for Spine 4.2 //! //! Add [`SpinePlugin`] to your Bevy app and spawn a [`SpineBundle`] to get started!