File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.8.1 - 2025-07-14
4+
5+ ### Breaking Changes
6+
7+ - ` interpolate ` functions now take an additional ` previous_value ` argument, which you can now use to make delta tweens.
8+ Still, you'd have to update everything that implements ` Interpolator ` to match the new signature.
9+
10+ ### Changes
11+
12+ - Migrate to Bevy 0.16.1
13+ - You can now use ` previous_value ` to make tweens that apply delta instead of set values
14+ (see ` TranslationDelta ` for example). This is useful when you want two ongoing tweens to affect the same entity.
15+
316## v0.8.0 - 2025-05-09
417
518### Changes
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ resolver = "2"
1818# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1919
2020[dependencies .bevy ]
21- version = " 0.16.0 "
21+ version = " 0.16.1 "
2222default-features = false
2323features = [" std" ]
2424
@@ -28,7 +28,7 @@ default-features = false
2828features = [" curve" ]
2929
3030[dependencies .bevy_time_runner ]
31- version = " 0.4.0 "
31+ version = " 0.4.1 "
3232
3333[dependencies .serde ]
3434version = " 1"
@@ -45,7 +45,7 @@ optional = true
4545
4646[dev-dependencies ]
4747bevy-inspector-egui = " 0.31.0"
48- rand = " 0.9.0 "
48+ rand = " 0.9.1 "
4949
5050[dev-dependencies .bevy ]
5151version = " 0.16.0"
You can’t perform that action at this time.
0 commit comments