From c72c00eee7e6ff3d69ed420da99913e7b35f7bef Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 24 Oct 2022 12:37:49 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [2.0.0](https://github.com/mobusoperandi/michie/compare/v1.1.0...v2.0.0) (2022-10-24) ### ⚠ BREAKING CHANGES * The `key_type` parameter is removed. Co-authored-by: Vimal Patel Co-authored-by: José Manuel Peña ### Features * remove key_type parameter ([56dbf31](https://github.com/mobusoperandi/michie/commit/56dbf319eff35f238c98360ad66e42a77293fc37)) ### Testing * underscore some intentionally unused fns ([3f84c81](https://github.com/mobusoperandi/michie/commit/3f84c819f3d6789e98e27e5bc7ec02ab0d338c2e)) * update expected error messages ([c73608a](https://github.com/mobusoperandi/michie/commit/c73608a60eac99b2c96b7f7902df38ca18bcc5e2)) * update stderr files ([d0c7437](https://github.com/mobusoperandi/michie/commit/d0c74372cc5a70b801244d40b6c878fb817ac09e)) ### Build system / dependencies * do not set RUSTFLAGS in Makefile ([bbae378](https://github.com/mobusoperandi/michie/commit/bbae378c373184075158daddf733892505b5e0b3)) * update sub-dep libc ([131f12f](https://github.com/mobusoperandi/michie/commit/131f12f1266f9c59618f39a16b89824679bf83cf)) * upgrade cargo_toml ([3c99a7f](https://github.com/mobusoperandi/michie/commit/3c99a7fe8c38267a2a24e3e5eaf208503d562c47)) * upgrade cargo-edit and cargo-make ([5d2ea79](https://github.com/mobusoperandi/michie/commit/5d2ea797dde46e1e211d39d400138cb2c5c550c7)) * upgrade jql ([528caae](https://github.com/mobusoperandi/michie/commit/528caae9bdb973ba728cc8f3f365d9d3b45708e2)) --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- macro/Cargo.toml | 2 +- 4 files changed, 35 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 206afc1..2328a3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +## [2.0.0](https://github.com/mobusoperandi/michie/compare/v1.1.0...v2.0.0) (2022-10-24) + + +### ⚠ BREAKING CHANGES + +* The `key_type` parameter is removed. + +Co-authored-by: Vimal Patel +Co-authored-by: José Manuel Peña + +### Features + +* remove key_type parameter ([56dbf31](https://github.com/mobusoperandi/michie/commit/56dbf319eff35f238c98360ad66e42a77293fc37)) + + +### Testing + +* underscore some intentionally unused fns ([3f84c81](https://github.com/mobusoperandi/michie/commit/3f84c819f3d6789e98e27e5bc7ec02ab0d338c2e)) +* update expected error messages ([c73608a](https://github.com/mobusoperandi/michie/commit/c73608a60eac99b2c96b7f7902df38ca18bcc5e2)) +* update stderr files ([d0c7437](https://github.com/mobusoperandi/michie/commit/d0c74372cc5a70b801244d40b6c878fb817ac09e)) + + +### Build system / dependencies + +* do not set RUSTFLAGS in Makefile ([bbae378](https://github.com/mobusoperandi/michie/commit/bbae378c373184075158daddf733892505b5e0b3)) +* update sub-dep libc ([131f12f](https://github.com/mobusoperandi/michie/commit/131f12f1266f9c59618f39a16b89824679bf83cf)) +* upgrade cargo_toml ([3c99a7f](https://github.com/mobusoperandi/michie/commit/3c99a7fe8c38267a2a24e3e5eaf208503d562c47)) +* upgrade cargo-edit and cargo-make ([5d2ea79](https://github.com/mobusoperandi/michie/commit/5d2ea797dde46e1e211d39d400138cb2c5c550c7)) +* upgrade jql ([528caae](https://github.com/mobusoperandi/michie/commit/528caae9bdb973ba728cc8f3f365d9d3b45708e2)) + ## [1.1.0](https://github.com/mobusoperandi/michie/compare/v1.0.0...v1.1.0) (2022-06-26) diff --git a/Cargo.lock b/Cargo.lock index 6628cd5..03bb65f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "michie" -version = "1.1.0" +version = "2.0.0" dependencies = [ "cargo-edit", "cargo-make", @@ -1746,7 +1746,7 @@ dependencies = [ [[package]] name = "michie-macro" -version = "1.1.0" +version = "2.0.0" dependencies = [ "attribute-derive", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index f0749f7..184cd66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie" -version = "1.1.0" +version = "2.0.0" edition = "2021" description = "An attribute macro that adds memoization to a function (sounds like Mickey)" repository = "https://github.com/mobusoperandi/michie" @@ -28,7 +28,7 @@ members = [ ] [dependencies] -michie-macro = { path = "macro", version = "=1.1.0" } +michie-macro = { path = "macro", version = "=2.0.0" } [dev-dependencies] cargo-edit = "0.11.5" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ad20b5d..c78f8a4 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie-macro" -version = "1.1.0" +version = "2.0.0" edition = "2021" description = "proc-macro crate for the michie crate" repository = "https://github.com/mobusoperandi/michie"