Skip to content

Commit f0cd996

Browse files
authored
bevy-0.15 (#45)
* 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
1 parent 67f63c0 commit f0cd996

30 files changed

+4168
-4019
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
run: cargo check --examples -F bevy_lookup_curve
5555

5656
- name: Run tests
57-
run: cargo test
57+
run: cargo test -F bevy/x11

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.7.0 - 2024-12-09
44

55
### Changes
66

7+
- Migrate to bevy 0.15
8+
- `LookupCurveHandle` as a replacement for `Handle<LookupCurve>`
9+
- Update all examples
10+
- Update README.md
711
- Add public `new()` constructor for `AnimationBuilder`
12+
- Update Cargo.toml dependnecies
13+
- Replace bevy_eventlistener with observer ([#44](https://github.com/Multirious/bevy_tween/pull/44))
14+
- Remove `tween_event_taking_system`, `TweenEventTakingPlugin`, and inner option inside `TweenEvent` ([#44](https://github.com/Multirious/bevy_tween/pull/44))
15+
- `entity_event` is now a example for tween event and observers
16+
- 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`
817

9-
## v0.6.0 - 2024-7-7
18+
## v0.6.0 - 2024-7-07
1019

1120
### Changes
1221

0 commit comments

Comments
 (0)