Skip to content
Snippets Groups Projects
Unverified Commit 05be2bbb authored by Alex Saveau's avatar Alex Saveau Committed by GitHub
Browse files

Fix changelog (#47)

parent 47b0b626
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -10,6 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `RepeatCount` and `RepeatStrategy` for more granular control over animation looping. - Added `RepeatCount` and `RepeatStrategy` for more granular control over animation looping.
- Added `with_repeat_count()` and `with_repeat_strategy()` builder methods to `Tween<T>`. - Added `with_repeat_count()` and `with_repeat_strategy()` builder methods to `Tween<T>`.
### Changed
- Removed the `tweening_type` parameter from the signature of `Tween<T>::new()`; use `with_repeat_count()` and `with_repeat_strategy()` instead.
### Removed
- Removed `Tweenable::is_looping()`, which was not implemented for most tweenables.
- Removed `TweeningType` in favor of `RepeatCount` and `RepeatStrategy`.
## [0.5.0] - 2022-08-04 ## [0.5.0] - 2022-08-04
### Added ### Added
...@@ -25,12 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -25,12 +34,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Compatible with Bevy 0.8 - Compatible with Bevy 0.8
- Double boxing in `Sequence` and `Tracks` was fixed. As a result, any custom tweenables - Double boxing in `Sequence` and `Tracks` was fixed. As a result, any custom tweenables
should implement `From` for `BoxedTweenable` to make those APIs easier to use. should implement `From` for `BoxedTweenable` to make those APIs easier to use.
- Removed the `tweening_type` parameter from the signature of `Tween<T>::new()`; use `with_repeat_count()` and `with_repeat_strategy()` instead.
### Removed
- Removed `Tweenable::is_looping()`, which was not implemented for most tweenables.
- Removed `TweeningType` in favor of `RepeatCount` and `RepeatStrategy`.
## [0.4.0] - 2022-04-16 ## [0.4.0] - 2022-04-16
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment