Skip to content

Commit

Permalink
V0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Nov 14, 2022
1 parent ce661fc commit ecb0170
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
19 changes: 12 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
First version
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//!
Expand All @@ -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
//!
Expand Down

0 comments on commit ecb0170

Please sign in to comment.