Skip to content

Commit

Permalink
Bump versions of main crate, physics integration layer, and Rapier in…
Browse files Browse the repository at this point in the history
…tegration
  • Loading branch information
idanarye committed Dec 13, 2024
1 parent a0aa268 commit b98d76b
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
NOTE: Subcrates have their own changelogs: [bevy-tnua-physics-integration-layer](physics-integration-layer/CHANGELOG.md), [bevy-tnua-rapier](rapier3d/CHANGELOG.md), [bevy-tnua-avian](avian3d/CHANGELOG.md).

## [Unreleased]

## 0.21.0 - 2024-12-13
### Changed
- Upgrade to Bevy 0.15.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ keywords = ["bevy", "gamedev", "locomotion", "game-controls"]
[package]
name = "bevy-tnua"
description = "A floating character controller for Bevy"
version = "0.20.0"
version = "0.21.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -35,7 +35,7 @@ exclude = [

[dependencies]
bevy = { version = "^0.15", default-features = false }
bevy-tnua-physics-integration-layer = { version = "0.4.0", path = "physics-integration-layer" }
bevy-tnua-physics-integration-layer = { version = "0.5.0", path = "physics-integration-layer" }
thiserror = "1.0.53"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion avian2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "../README.md"
[dependencies]
bevy = { version = "^0.15", default-features = false }
avian2d = { git = "https://github.com/Jondolf/avian", default-features = false, features = ["2d", "debug-plugin", "parallel"]}
bevy-tnua-physics-integration-layer = { version = "^0.4", path = "../physics-integration-layer" }
bevy-tnua-physics-integration-layer = { version = "^0.5", path = "../physics-integration-layer" }

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion avian3d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "../README.md"
[dependencies]
bevy = { version = "^0.15", default-features = false }
avian3d = { git = "https://github.com/Jondolf/avian", default-features = false, features = ["3d", "debug-plugin", "parallel"] }
bevy-tnua-physics-integration-layer = { version = "^0.4", path = "../physics-integration-layer" }
bevy-tnua-physics-integration-layer = { version = "^0.5", path = "../physics-integration-layer" }

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 2 additions & 0 deletions physics-integration-layer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## 0.5.0 - 2024-12-13
### Changed
- Upgrade to Bevy 0.15.

Expand Down
2 changes: 1 addition & 1 deletion physics-integration-layer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy-tnua-physics-integration-layer"
description = "Components for integrating physics backends with bevy-tnua"
version = "0.4.0"
version = "0.5.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions rapier2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy-tnua-rapier2d"
description = "Rapier 2D integration for bevy-tnua"
version = "0.7.0"
version = "0.8.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -15,7 +15,7 @@ readme = "../README.md"
# bevy_render is required because bevy_rapier uses bevy::render::primitives::Aabb
bevy = { version = "^0.15", default-features = false, features = ["bevy_render"] }
bevy_rapier2d = { version = "^0.28", default-features = false, features = ["dim2"] }
bevy-tnua-physics-integration-layer = { version = "^0.4", path = "../physics-integration-layer" }
bevy-tnua-physics-integration-layer = { version = "^0.5", path = "../physics-integration-layer" }

[package.metadata.docs.rs]
all-features = true
Expand Down
4 changes: 3 additions & 1 deletion rapier3d/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
NOTE: This changelog is shared between bevy-tnua-rapier2d and bevy-tnua-rapier3d.

## [Unreleased]

## 0.8.0 - 2024-12-13
### Changed
- Upgrade to Bevy 0.15 and bevy_rapier 0.28.

## 0.4.0 - 2024-07-08
## 0.7.0 - 2024-07-08
### Changed
- Upgrade to Bevy 0.14 and bevy_rapier 0.27.

Expand Down
4 changes: 2 additions & 2 deletions rapier3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy-tnua-rapier3d"
description = "Rapier 3D integration for bevy-tnua"
version = "0.7.0"
version = "0.8.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -15,7 +15,7 @@ readme = "../README.md"
# bevy_render is required because bevy_rapier uses bevy::render::primitives::Aabb
bevy = { version = "^0.15", default-features = false, features = ["bevy_render"] }
bevy_rapier3d = { version = "^0.28", default-features = false, features = ["dim3"]}
bevy-tnua-physics-integration-layer = { version = "^0.4", path = "../physics-integration-layer" }
bevy-tnua-physics-integration-layer = { version = "^0.5", path = "../physics-integration-layer" }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit b98d76b

Please sign in to comment.