From ecb0170d3a5c912b100f906833c22c78dabf6091 Mon Sep 17 00:00:00 2001 From: Felix de Maneville Date: Mon, 14 Nov 2022 12:37:46 +0100 Subject: [PATCH] V0.5.0 --- CHANGELOG.md | 19 ++++++++++++------- README.md | 3 ++- src/lib.rs | 3 ++- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0355050..306bec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 0.5.0 + +* `bevy` 0.9 +* parallel processing batch size is usef for stick constraints + ## 0.4.0 * `bevy` 0.8 @@ -16,16 +21,16 @@ ## 0.2.0 -- Bevy 0.6 -- Rust 2021 edition -- Clippy extra restrictions +* Bevy 0.6 +* Rust 2021 edition +* Clippy extra restrictions ## 0.1.1 -- The `VerletConfig::parallel_processing_batch_size` is only used for `VerletPoint` processing -- The cloth cutting example improved and scaled up -- The debug stick printing system moved in a private `debug` module +* The `VerletConfig::parallel_processing_batch_size` is only used for `VerletPoint` processing +* The cloth cutting example improved and scaled up +* The debug stick printing system moved in a private `debug` module ## 0.1.0 -First version \ No newline at end of file +First version diff --git a/README.md b/README.md index ea42202..119dae8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,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_verlet.svg)](https://crates.io/crates/bevy_verlet) [![Docs.rs](https://docs.rs/bevy_verlet/badge.svg)](https://docs.rs/bevy_verlet) -[![dependency status](https://deps.rs/crate/bevy_verlet/0.4.0/status.svg)](https://deps.rs/crate/bevy_verlet) +[![dependency status](https://deps.rs/crate/bevy_verlet/0.5.0/status.svg)](https://deps.rs/crate/bevy_verlet) Simple Verlet points and sticks implementation for bevy. @@ -22,6 +22,7 @@ If you are looking for cloth physics, please check [`bevy_silk`](https://github. | 0.2.x | 0.6.x | | 0.3.x | 0.7.x | | 0.4.x | 0.8.x | + | 0.5.x | 0.9.x | ## Features diff --git a/src/lib.rs b/src/lib.rs index fa12938..48991e2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,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_verlet.svg)](https://crates.io/crates/bevy_verlet) //! [![Docs.rs](https://docs.rs/bevy_verlet/badge.svg)](https://docs.rs/bevy_verlet) -//! [![dependency status](https://deps.rs/crate/bevy_verlet/0.4.0/status.svg)](https://deps.rs/crate/bevy_verlet) +//! [![dependency status](https://deps.rs/crate/bevy_verlet/0.5.0/status.svg)](https://deps.rs/crate/bevy_verlet) //! //! Simple Verlet points and sticks implementation for bevy. //! @@ -20,6 +20,7 @@ //! | 0.2.x | 0.6.x | //! | 0.3.x | 0.7.x | //! | 0.4.x | 0.8.x | +//! | 0.5.x | 0.9.x | //! //! ## Features //!