diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c63253..1a6af20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.2.0 - 2024-07-06 + +### Added + +- Support Bevy 0.14.0 +- Add a reset() method on the SpritesheetAnimation component + +### Fixed + +- Switch new_clip/new_animation closures to FnMut to allow mutations + ## 0.1.0 - 2024-04-10 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 02d4c29..c0fe4d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_spritesheet_animation" -version = "0.1.0" +version = "0.2.0" description = "A Bevy plugin for animating sprites" repository = "https://github.com/merwaaan/bevy_spritesheet_animation" readme="README.md" diff --git a/README.md b/README.md index fe7271b..8fc0ad3 100644 --- a/README.md +++ b/README.md @@ -246,6 +246,7 @@ For more examples, browse the [examples/](examples) directory. | bevy | bevy_spritesheet_animation | | ---- | -------------------------- | +| 0.14 | 0.2.0 | | 0.13 | 0.1.0 | # Credits