From 14bddc1448d249705e700d18b413e94a66638b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Lescaudey=20de=20Maneville?= Date: Fri, 12 Jul 2024 09:35:03 +0200 Subject: [PATCH] 0.10.0 --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 7 ++++--- src/lib.rs | 5 +++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ed934..3cf5643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## 0.10.0 + * Bevy 0.14 * (**BREAKING**) `CyclicColorState` now takes a `const N: usize` generic instead of hard coded `9` diff --git a/Cargo.toml b/Cargo.toml index bbfe6c6..293bded 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_life" -version = "0.9.0" +version = "0.10.0" edition = "2021" authors = ["Felix de Maneville "] license-file = "./LICENSE" diff --git a/README.md b/README.md index a6690d9..556e3bf 100644 --- a/README.md +++ b/README.md @@ -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_life.svg)](https://crates.io/crates/bevy_life) [![Docs.rs](https://docs.rs/bevy_life/badge.svg)](https://docs.rs/bevy_life) - [![dependency status](https://deps.rs/crate/bevy_life/0.9.0/status.svg)](https://deps.rs/crate/bevy_life) + [![dependency status](https://deps.rs/crate/bevy_life/0.10.0/status.svg)](https://deps.rs/crate/bevy_life) @@ -15,8 +15,8 @@ From the classic 2D [Conway’s game of life](https://en.wikipedia.org/wiki/Conw See: - * [Game of life variations](https://cs.stanford.edu/people/eroberts/courses/soco/projects/2008-09/modeling-natural-systems/gameOfLife2.html) - * [`Wireworld` implementation](https://www.quinapalus.com/wi-index.html) (see +* [Game of life variations](https://cs.stanford.edu/people/eroberts/courses/soco/projects/2008-09/modeling-natural-systems/gameOfLife2.html) +* [`Wireworld` implementation](https://www.quinapalus.com/wi-index.html) (see this lib's [implementation](https://github.com/ManevilleF/wireworld-rs)) ## Bevy versions @@ -33,6 +33,7 @@ to follow the `main` branch of `bevy` | 0.7.x | 0.10.x | | 0.8.x | 0.11.x | | 0.9.x | 0.13.x | +| 0.10.x | 0.14.x | ## How to use diff --git a/src/lib.rs b/src/lib.rs index 9628c4f..e0e4438 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,8 +3,8 @@ //! //! See: //! -//! * [Game of life variations](https://cs.stanford.edu/people/eroberts/courses/soco/projects/2008-09/modeling-natural-systems/gameOfLife2.html) -//! * [`Wireworld` implementation](https://www.quinapalus.com/wi-index.html) (see +//! * [Game of life variations](https://cs.stanford.edu/people/eroberts/courses/soco/projects/2008-09/modeling-natural-systems/gameOfLife2.html) +//! * [`Wireworld` implementation](https://www.quinapalus.com/wi-index.html) (see //! this lib's [implementation](https://github.com/ManevilleF/wireworld-rs)) //! //! ## Bevy versions @@ -21,6 +21,7 @@ //! | 0.7.x | 0.10.x | //! | 0.8.x | 0.11.x | //! | 0.9.x | 0.13.x | +//! | 0.10.x | 0.14.x | //! //! ## How to use //!