diff --git a/CHANGELOG.md b/CHANGELOG.md index a369e2f0a..862900ffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Unreleased +# 0.18.0 (2022-07-02) + +* Increase minumum rustc version to 1.56.1 because of shred and hashbrown dependencies ([#748]) + +[#748]: https://github.com/amethyst/specs/pull/748 + +Full changelog: https://github.com/amethyst/specs/compare/v0.17.0...v0.18.0 + +# 0.17.0 (2021-06-08) + * Deprecate `error::NoError` in favor of `std::convert::Infallible` ([#688]) * Use `#[non_exhaustive]` for `error::Error`. Note this bumps the minimum supported rust version to 1.40 ([#688]). * Add the `derive` feature that enables all derive-related smaller features diff --git a/Cargo.toml b/Cargo.toml index c72a2334d..f2787f0ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "specs" -version = "0.17.0" +version = "0.18.0" description = """ Specs is an Entity-Component-System library written in Rust. """ @@ -10,7 +10,7 @@ homepage = "https://specs.amethyst.rs" readme = "README.md" keywords = ["gamedev", "ecs", "entity", "component"] categories = ["concurrency", "game-engines"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" authors = ["slide-rs hackers"] exclude = ["bors.toml", ".travis.yml"] edition = "2018"