Skip to content

Commit

Permalink
bevy-0.15 (#45)
Browse files Browse the repository at this point in the history
* bevy-0.15

* Update build.rs cfg(CHANNEL_NIGHTLY)

* Update Cargo.toml dependencies

Update bevy_lookup_curve to 0.6.0
Update bevy to 0.15.0
Add a few more features to bevy in dev-dependnecies
Remove bevy_eventlistener

* bye bye my beautiful graph

* Change EaseFunction to EaseKind and make identical to bevy::math::curve::EaseFunction

* Remove `bevy_eventlistener` support in `tween_event`

* Fix QueryEntityError reference issue

* Fix Handle<LookupCurve> not being a component

* Update rustfmt.toml

* Format

* Temporary comment stuff in utils so it compiles

* Fix banner_bounce example

* Fix banner_triangle example

* Update Cargo.toml

* Remove unused lifetimes

* Update examples

* test script

* Fix banner_bounce animation

* Remove bevy_eventlistener feature requirement from entity_event example

* Update entity_event example to use observer instead of bevy_eventlistener

* update README.md

* Fix bevy_lookup_curve feature to include bevy_asset

* Update ci

* Fix ci

* Update CHANGELOG.md

* Update bevy_time_runner to the crates.io version and cargo update

* Bump version to 0.7.0, cargo update and update README.md
  • Loading branch information
Multirious authored Dec 9, 2024
1 parent 67f63c0 commit f0cd996
Show file tree
Hide file tree
Showing 30 changed files with 4,168 additions and 4,019 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ jobs:
run: cargo check --examples -F bevy_lookup_curve

- name: Run tests
run: cargo test
run: cargo test -F bevy/x11
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Changelog

## Unreleased
## v0.7.0 - 2024-12-09

### Changes

- Migrate to bevy 0.15
- `LookupCurveHandle` as a replacement for `Handle<LookupCurve>`
- Update all examples
- Update README.md
- Add public `new()` constructor for `AnimationBuilder`
- Update Cargo.toml dependnecies
- Replace bevy_eventlistener with observer ([#44](https://github.com/Multirious/bevy_tween/pull/44))
- Remove `tween_event_taking_system`, `TweenEventTakingPlugin`, and inner option inside `TweenEvent` ([#44](https://github.com/Multirious/bevy_tween/pull/44))
- `entity_event` is now a example for tween event and observers
- Change EaseFunction to EaseKind which is a direct copy from `bevy_math::curve::EaseFunction` and will be deprecated in favour of `bevy_math::curve::EaseFunction`

## v0.6.0 - 2024-7-7
## v0.6.0 - 2024-7-07

### Changes

Expand Down
Loading

0 comments on commit f0cd996

Please sign in to comment.