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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ First, add `avian2d` or `avian3d` to your dependencies in `Cargo.toml`:
```toml
# For 2D applications:
[dependencies]
avian2d = "0.4"
avian2d = "0.5"

# For 3D applications:
[dependencies]
avian3d = "0.4"
avian3d = "0.5"

# If you want to use the most up-to-date version, you can follow the main branch:
[dependencies]
Expand Down Expand Up @@ -159,13 +159,13 @@ cargo run --example cubes --no-default-features --features "3d f64 parry-f64"

## Version Table

| Bevy | Avian |
| ------- | ------ |
| 0.18 | main |
| 0.17 | 0.4 |
| 0.16 | 0.3 |
| 0.15 | 0.2 |
| 0.14 | 0.1 |
| Bevy | Avian |
| ------- | --------- |
| 0.18 | 0.5, main |
| 0.17 | 0.4 |
| 0.16 | 0.3 |
| 0.15 | 0.2 |
| 0.14 | 0.1 |

Avian provides [migration guides](./migration-guides) for each version.

Expand Down
2 changes: 1 addition & 1 deletion crates/avian2d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avian2d"
version = "0.5.0"
version = "0.6.0-dev"
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["Joona Aalto <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/avian3d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "avian3d"
version = "0.5.0"
version = "0.6.0-dev"
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["Joona Aalto <[email protected]>"]
Expand Down
5 changes: 5 additions & 0 deletions migration-guides/0.4-to-0.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Migrating From v0.4 to v0.5

**Avian 0.5** migrated from Bevy 0.17 to 0.18. See [Bevy's migration guide](https://bevy.org/learn/migration-guides/0-17-to-0-18/) for migrating to the new version.

This release contains no breaking changes for Avian itself.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Migrating From v0.4 to `main`
# Migrating From v0.5 to `main`

This file contains migration guides for breaking changes that have happened on the `main` branch
since the latest release. These guides are evolving and may not be polished yet.
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
//! ```toml
//! # For 2D applications:
//! [dependencies]
//! avian2d = "0.4"
//! avian2d = "0.5"
//!
//! # For 3D applications:
//! [dependencies]
//! avian3d = "0.4"
//! avian3d = "0.5"
//!
//! # If you want to use the most up-to-date version, you can follow the main branch:
//! [dependencies]
Expand All @@ -39,7 +39,7 @@
//! [dependencies]
//! # Add 3D Avian with double-precision floating point numbers.
//! # `parry-f64` enables collision detection using Parry.
//! avian3d = { version = "0.4", default-features = false, features = ["3d", "f64", "parry-f64", "xpbd_joints"] }
//! avian3d = { version = "0.5", default-features = false, features = ["3d", "f64", "parry-f64", "xpbd_joints"] }
//! ```
//!
//! ## Feature Flags
Expand Down