Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.35.0 (12 July 2026)

### Modified

- Update to bevy 0.19.

## v0.34.0 (14 May 2026)

### Added
Expand Down
2 changes: 1 addition & 1 deletion bevy_rapier2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_rapier2d"
version = "0.34.0"
version = "0.35.0"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "2-dimensional physics engine in Rust, official Bevy plugin."
documentation = "http://docs.rs/bevy_rapier2d"
Expand Down
2 changes: 1 addition & 1 deletion bevy_rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_rapier3d"
version = "0.34.0"
version = "0.35.0"
authors = ["Sébastien Crozet <developer@crozet.re>"]
description = "3-dimensional physics engine in Rust, official Bevy plugin."
documentation = "http://docs.rs/bevy_rapier3d"
Expand Down
2 changes: 1 addition & 1 deletion bevy_rapier_benches3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"

[dependencies]
rapier3d = { workspace = true }
bevy_rapier3d = { version = "0.34", path = "../bevy_rapier3d" }
bevy_rapier3d = { version = "0.35", path = "../bevy_rapier3d" }
bevy = { version = "0.19.0", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"

[dependencies]
bevy = "0.19.0"
bevy_rapier3d = { version = "0.34", path = "../bevy_rapier3d" }
bevy_rapier2d = { version = "0.34", path = "../bevy_rapier2d" }
bevy_rapier3d = { version = "0.35", path = "../bevy_rapier3d" }
bevy_rapier2d = { version = "0.35", path = "../bevy_rapier2d" }

[[bin]]
name = "ambiguity_detection"
Expand Down
Loading