diff --git a/CHANGELOG.md b/CHANGELOG.md index da89673..7958a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.2], [impl-tools-lib-0.11.0] — 2024-12-09 + +Re-release, bumping `impl-tools-lib` to v0.11.0 since it turns out that switching to `proc-macro-error2` was an API-breaking release for `impl-tools-lib` (this is only apparent if a macro emits an error, resulting in a message like "help: message: proc-macro-error2 API cannot be used outside of `entry_point` invocation, perhaps you forgot to annotate your #[proc_macro] function with `#[proc_macro_error] +"). + +`impl-tools` is unaffected excepting where an incompatible version of `impl-tools-lib` is used. Broken versions will be yanked. + ## [0.10.1] — 2024-10-21 - Improve CI workflows (#38) diff --git a/Cargo.toml b/Cargo.toml index 09190a5..e57c9b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools" -version = "0.10.1" +version = "0.10.2" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0" @@ -23,7 +23,7 @@ default-features = false version = "2.0.0" [dependencies.impl-tools-lib] -version = "0.10.0" +version = "0.11.0" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 19a0120..0b7c172 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.10.1" +version = "0.11.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0"