From 2d1c69fbb43b4fdd2ea44ac5ac352d590aa647cb Mon Sep 17 00:00:00 2001 From: Mark Wainwright Date: Thu, 19 Dec 2024 18:28:15 +0000 Subject: [PATCH] bumped version to 0.10.0 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecfa18..dae036a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,9 +13,16 @@ Possible header types: ## Unreleased +## v0.10.0 (2024-16-07) + +### Breaking Changes + +- Minimum supported rust version is now 1.83 + ### Added -- Added 'tiles_before' to tile sets +- Added 'tiles_before', `insert`, `remove` to tile sets +- Made more tile set functions const ## v0.9.0 (2024-16-07) diff --git a/Cargo.toml b/Cargo.toml index 589302e..46c381c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geometrid" -version = "0.9.1" +version = "0.10.0" authors = ["Mark Wainwright "] description = "Everything you would ever need to work with constant sized square grids" documentation = "https://docs.rs/geometrid" diff --git a/src/lib.rs b/src/lib.rs index 5996e7f..844a65b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![cfg_attr(not(any(test, feature = "std")), no_std)] -#![doc(html_root_url = "https://docs.rs/geometrid/0.9.1")] +#![doc(html_root_url = "https://docs.rs/geometrid/0.10.0")] // #![deny(missing_docs)] #![deny(warnings, dead_code, unused_imports, unused_mut)] #![warn(clippy::pedantic)]