diff --git a/changelog.md b/changelog.md index 388ef60..af72974 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,4 @@ -# 0.8.0 (UNRELEASED) +# 0.8.0 - Upgrade runtime to Spine 4.2 - Fix `memcpy` crash in Rust 1.78 (when not using `libc` feature) - Consistently use "translation" instead of "position" verbiage. diff --git a/readme.md b/readme.md index 6b3ee32..cf3897a 100644 --- a/readme.md +++ b/readme.md @@ -4,17 +4,17 @@ ``` [dependencies] -rusty_spine = "0.7" +rusty_spine = "0.8" ``` [Online demo!](https://jabuwu.github.io/rusty_spine/) ## Supported Versions -| rusty_spine | Spine | -| ---------------- | ----- | -| 0.8 (unreleased) | 4.2 | -| 0.1 - 0.7 | 4.1 | +| rusty_spine | Spine | +| ----------- | ----- | +| 0.8 | 4.2 | +| 0.1 - 0.7 | 4.1 | ## Rust API diff --git a/src/c/mod.rs b/src/c/mod.rs index e003489..5a8a46b 100644 --- a/src/c/mod.rs +++ b/src/c/mod.rs @@ -1,7 +1,7 @@ //! Direct access to the [Spine C Runtime](http://en.esotericsoftware.com/spine-c). //! //! Transpiled from spine-c commit -//! [c960402c08ae6814ac55cd2e3675a587977f424a](https://github.com/EsotericSoftware/spine-runtimes/tree/c960402c08ae6814ac55cd2e3675a587977f424a) +//! [a8a7ba878aacf2109be07ef4dffcf34643f9547b](https://github.com/EsotericSoftware/spine-runtimes/tree/a8a7ba878aacf2109be07ef4dffcf34643f9547b) //! //! Transpiled using c2rust commit [0a2b64b4f83b42f08fe13c3d4fbd8b5b167f07a8](https://github.com/immunant/c2rust/tree/0a2b64b4f83b42f08fe13c3d4fbd8b5b167f07a8) #[cfg(not(feature = "libc"))]