From 83998ef99dfa114e33e2bdd72386f7c79db36815 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Tue, 2 Aug 2022 11:28:20 +0100 Subject: [PATCH] Prepare 0.4.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 66761b9..bcbc481 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.4.0] — 2022-08-19 + +Change signature of `ScopeAttr::apply`: replace `args: TokenStream, attr_span: Span` +with `attr: Attribute` (#15). + ## [0.3.2] — 2022-06-01 Support `no_std`. Support matching standard traits via paths from `core`/`alloc` diff --git a/Cargo.toml b/Cargo.toml index b810baf..51ac28b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools" -version = "0.3.2" +version = "0.4.0" 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.3.0" +version = "0.4.0" path = "lib" [dev-dependencies] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 8c19535..1307d3f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "impl-tools-lib" -version = "0.3.0" +version = "0.4.0" authors = ["Diggory Hardy "] edition = "2021" license = "MIT/Apache-2.0"