From 73c5512fab0c0fd48d4edadd1a8a84202062a26d Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Thu, 7 Sep 2023 14:57:26 +0100 Subject: [PATCH] Prepare 0.10.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c159aad..ca0014d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0] — 2023-09-07 + +- Rename `singleton!` → `impl_anon!` (#36) +- Reorganise `impl-tools-lib`: new `anon` and `scope` public modules (#36) + ## [0.9.1] — 2023-09-07 - Fix clone for fields which auto-deref (issue #34) diff --git a/Cargo.toml b/Cargo.toml index b3fed82..62573ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools" -version = "0.9.1" +version = "0.10.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0" @@ -22,7 +22,7 @@ default-features = false version = "2.0.0" [dependencies.impl-tools-lib] -version = "0.9.1" +version = "0.10.0" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 6f84030..684e4be 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.9.1" +version = "0.10.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0"