Skip to content

Commit 0a3608e

Browse files
committed
version update and changelog
1 parent ea65668 commit 0a3608e

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"
2222
default-features = false
2323
features = ["std"]
2424

@@ -28,7 +28,7 @@ default-features = false
2828
features = ["curve"]
2929

3030
[dependencies.bevy_time_runner]
31-
version = "0.4.0"
31+
version = "0.4.1"
3232

3333
[dependencies.serde]
3434
version = "1"
@@ -45,7 +45,7 @@ optional = true
4545

4646
[dev-dependencies]
4747
bevy-inspector-egui = "0.31.0"
48-
rand = "0.9.0"
48+
rand = "0.9.1"
4949

5050
[dev-dependencies.bevy]
5151
version = "0.16.0"

0 commit comments

Comments
 (0)