From 27b90ba450dcc31a57870a83d01878352128f355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Lescaudey=20de=20Maneville?= Date: Sat, 2 Dec 2023 11:31:29 +0100 Subject: [PATCH] V0.7.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- README.md | 13 ++++++++----- src/lib.rs | 4 +++- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2adaa5b..b17dd9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.7.0 + * Bevy 0.12 support (#14) * Verlet physics always happens on `FixedUpdate` schedule (#12) @@ -40,7 +42,8 @@ ## 0.1.1 -* The `VerletConfig::parallel_processing_batch_size` is only used for `VerletPoint` processing +* 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 diff --git a/Cargo.toml b/Cargo.toml index b614033..d1b7d1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_verlet" -version = "0.6.1" +version = "0.7.0" edition = "2021" authors = ["Felix de Maneville "] repository = "https://github.com/ManevilleF/bevy_verlet" diff --git a/README.md b/README.md index 68b8f87..6872dea 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,14 @@ [![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.6.1/status.svg)](https://deps.rs/crate/bevy_verlet) +[![dependency status](https://deps.rs/crate/bevy_verlet/0.7.0/status.svg)](https://deps.rs/crate/bevy_verlet) Simple Verlet points and sticks implementation for bevy. -If you are looking for cloth physics, please check [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead, +If you are looking for cloth physics, please check +[`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead ## Bevy versions @@ -24,6 +25,7 @@ If you are looking for cloth physics, please check [`bevy_silk`](https://github. | 0.4.x | 0.8.x | | 0.5.x | 0.9.x | | 0.6.x | 0.11.x | + | 0.7.x | 0.12.x | ## Features @@ -68,7 +70,7 @@ bevy gizmos 3. 2D cloth cutting `cargo run --example 2d_cloth_cutter --features "debug" - + ![Alt](./docs/demo_cloth_cutting.gif "demo gif") ### 3D @@ -79,5 +81,6 @@ bevy gizmos ## Credits Inspired by: -- This [Sebastian Lague video](https://www.youtube.com/watch?v=PGk0rnyTa1U) -- This [Coding Math course](https://www.youtube.com/watch?v=3HjO_RGIjCU) + +* This [Sebastian Lague video](https://www.youtube.com/watch?v=PGk0rnyTa1U) +* This [Coding Math course](https://www.youtube.com/watch?v=3HjO_RGIjCU) diff --git a/src/lib.rs b/src/lib.rs index 78cfc26..45d4b76 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ //! Simple Verlet points and sticks implementation for bevy. //! -//! If you are looking for cloth physics, please check [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead, +//! If you are looking for cloth physics, please check +//! [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead //! //! ## Bevy versions //! @@ -12,6 +13,7 @@ //! | 0.4.x | 0.8.x | //! | 0.5.x | 0.9.x | //! | 0.6.x | 0.11.x | +//! | 0.7.x | 0.12.x | //! //! ## Features //!