diff --git a/CHANGELOG.md b/CHANGELOG.md index c85e0d2..afc6854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [Unreleased] + +## 0.6.0 + +* Bump `bevy` to `0.11.x` +* Bump `bevy_rapier3d` to `0.22.x` + ## 0.5.0 * Bump `bevy` to `0.10.x` @@ -19,6 +26,7 @@ With the new version (See [Migration guide](https://github.com/jakobhellermann/bevy-inspector-egui/blob/main/docs/MIGRATION_GUIDE_0.15_0.16.md)), the following changes were applied: + * (**BREAKING**) Removed `debug` feature * Removed `bevy_inspector_egui` dependency, kept only as `dev-dependency` for examples diff --git a/Cargo.toml b/Cargo.toml index 8ba578c..e2418fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_silk" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Felix de Maneville "] repository = "https://github.com/ManevilleF/bevy_silk" diff --git a/README.md b/README.md index 1d5e962..e6b4dea 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/) [![Crates.io](https://img.shields.io/crates/v/bevy_silk.svg)](https://crates.io/crates/bevy_silk) [![Docs.rs](https://docs.rs/bevy_silk/badge.svg)](https://docs.rs/bevy_silk) -[![dependency status](https://deps.rs/crate/bevy_silk/0.5.0/status.svg)](https://deps.rs/crate/bevy_silk) +[![dependency status](https://deps.rs/crate/bevy_silk/0.6.0/status.svg)](https://deps.rs/crate/bevy_silk) @@ -19,7 +19,7 @@ by [FĂ©lix Lescaudey de Maneville](https://linktree.com/ManevilleF) Add `bevy_silk` as a dependency in the `Cargo.toml` -`bevy_silk = "0.4"` +`bevy_silk = "0.6"` Or follow the main git branch @@ -33,6 +33,8 @@ Or follow the main git branch | 0.2.0 | 0.7 | | 0.3.0 | 0.8 | | 0.4.0 | 0.9 | +| 0.5.0 | 0.10 | +| 0.6.0 | 0.11 | ### Plugin diff --git a/src/lib.rs b/src/lib.rs index c61af0b..788b9c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! //! Add `bevy_silk` as a dependency in the `Cargo.toml` //! -//! `bevy_silk = "0.5"` +//! `bevy_silk = "0.6"` //! //! Or follow the main git branch //! @@ -25,6 +25,7 @@ //! | 0.3.0 | 0.8 | //! | 0.4.0 | 0.9 | //! | 0.5.0 | 0.10 | +//! | 0.6.0 | 0.11 | //! //! ### Plugin //!