From 01ff67dc27ade26b8808627323138b77f925c691 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Sat, 17 Sep 2022 11:31:27 +0100 Subject: [PATCH] Prepare 0.4.2 --- CHANGELOG.md | 8 +++++++- Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f762c17..47274ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,16 @@ 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.4.1] — 2022-09-17 +## [0.4.2] — 2022-09-17 +- Correct release of 0.4.1 (which bumped the version of impl-tools without + bumping impl-tools-lib) (#18) - Fix `#[autoimpl]` on traits for GATs and attributes on trait const/method/type items (#17) +## [0.4.1] — 2022-09-17 + +No changes (prefer 0.4.2 instead). + ## [0.4.0] — 2022-08-19 Change signature of `ScopeAttr::apply`: replace `args: TokenStream, attr_span: Span` diff --git a/Cargo.toml b/Cargo.toml index ea8cb90..6bca4df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools" -version = "0.4.1" +version = "0.4.2" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0" @@ -21,7 +21,7 @@ proc-macro-error = "1.0" version = "1.0.14" [dependencies.impl-tools-lib] -version = "0.4.0" +version = "0.4.2" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 1307d3f..d3aea60 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.4.0" +version = "0.4.2" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0"