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

chore(main): release 2.0.0-rc.1 #29

Closed
wants to merge 1 commit into from
Closed
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
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,56 @@ Unreleased changes (if any) can be found in the latest [release pull-request].



## [2.0.0-rc.1](https://github.com/jcornaz/benimator/compare/v2.0.0-rc.1...v2.0.0-rc.1) (2022-01-19)


### ⚠ BREAKING CHANGES

* All struct fields are now private
* All enums are marked with `#[non_exhaustive]`
* The constructor of `AnimationPlugin` is now private. Use `AnimationPlugin::default()` instead.
* 2.0.0-rc.1
* require rust 1.58
* the `mode` field of `SpriteSheetAnimation` is no longer public
* **deps:** the cargo feature `warnings` is removed, as it is no longer possible to add the animation as component by mistake
* Remove `Reflect` implementation from `SpriteSheetAnimation`, `AnimationMode` and `Frame`
* Update animation during the `CoreStage::Update` stage (#14)
* The SpriteSheetAnimation is now an asset (#4)
* That will make possible to move the animation definition in the assets.

### Features

* add ping pong animation mode ([#25](https://github.com/jcornaz/benimator/issues/25)) ([76a6306](https://github.com/jcornaz/benimator/commit/76a6306c6becb3f1ea6c1bbfabf36cb8bd9e2de8))
* Allow to reset animation ([#8](https://github.com/jcornaz/benimator/issues/8)) ([1d54790](https://github.com/jcornaz/benimator/commit/1d547900cb9879e9cc678ab1573e557923f0d848))
* Create animaion from index range ([46a0320](https://github.com/jcornaz/benimator/commit/46a03202781c6fe45bb73a10da31678ca1dc751c))
* create animation from iterator ([#23](https://github.com/jcornaz/benimator/issues/23)) ([6e670db](https://github.com/jcornaz/benimator/commit/6e670db5f162a963318fab2759cdb4a5f3fd18b0))
* Run animation once or repeated ([0efff6b](https://github.com/jcornaz/benimator/commit/0efff6bf5ded1e83505c1bdcad05122588d8e296))
* sprite-sheet animation ([e13a69c](https://github.com/jcornaz/benimator/commit/e13a69c7923279f5e26e761426ea62d797f4d4b3))
* The SpriteSheetAnimation is now an asset ([#4](https://github.com/jcornaz/benimator/issues/4)) ([2a895a5](https://github.com/jcornaz/benimator/commit/2a895a5417f9ce60efc81449f12868d5cf73883b))
* Update animation during the `CoreStage::Update` stage ([#14](https://github.com/jcornaz/benimator/issues/14)) ([2bcee87](https://github.com/jcornaz/benimator/commit/2bcee87fee72460755af1ff562838e431d8d0cb9))


### Bug Fixes

* Fix project title in readme ([1e3ddb1](https://github.com/jcornaz/benimator/commit/1e3ddb164810d8d944095d753d2a4cb07de0c83c))
* impossiblity to restart an animation ran with 'Once' mode ([#7](https://github.com/jcornaz/benimator/issues/7)) ([4c7b5ad](https://github.com/jcornaz/benimator/commit/4c7b5ad6c008d9893be90c4ae366f9afbe8006ff))


### Code Refactoring

* Extract animation state into a dedicated component ([7d9c9ac](https://github.com/jcornaz/benimator/commit/7d9c9aca7cce35300325d8b919d89c56fad7dac6))


### Miscellaneous Chores

* All enums are marked with `#[non_exhaustive]` ([249fc68](https://github.com/jcornaz/benimator/commit/249fc6816f1984b85d7410a32d5f0b493a0216c6))
* All struct fields are now private ([249fc68](https://github.com/jcornaz/benimator/commit/249fc6816f1984b85d7410a32d5f0b493a0216c6))
* **deps:** require bevy version 0.6 ([#15](https://github.com/jcornaz/benimator/issues/15)) ([99da92b](https://github.com/jcornaz/benimator/commit/99da92b094f6ba855e6ce1de592ed483aa2c7064))
* reduce API surface ([#27](https://github.com/jcornaz/benimator/issues/27)) ([249fc68](https://github.com/jcornaz/benimator/commit/249fc6816f1984b85d7410a32d5f0b493a0216c6))
* Remove `Reflect` implementation from `SpriteSheetAnimation`, `AnimationMode` and `Frame` ([04af5e1](https://github.com/jcornaz/benimator/commit/04af5e1e8b45ad5717f2798880dfb6de85d8af0d))
* require rust 1.58 ([8acb6d2](https://github.com/jcornaz/benimator/commit/8acb6d24927f7fea7a79009001be07148149e0e9))
* The constructor of `AnimationPlugin` is now private. Use `AnimationPlugin::default()` instead. ([249fc68](https://github.com/jcornaz/benimator/commit/249fc6816f1984b85d7410a32d5f0b493a0216c6))

## [2.0.0-rc.1](https://github.com/jcornaz/benimator/compare/v1.1.0...v2.0.0-rc.1) (2022-01-19)


Expand Down