Skip to content

Commit

Permalink
0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Jul 12, 2024
1 parent 09a95bc commit 14bddc1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_life"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
authors = ["Felix de Maneville <[email protected]>"]
license-file = "./LICENSE"
Expand Down
7 changes: 4 additions & 3 deletions README.md
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_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)

<!-- cargo-sync-readme start -->

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

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

0 comments on commit 14bddc1

Please sign in to comment.