diff --git a/CHANGELOG.md b/CHANGELOG.md index b447ff8..031260b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.2.9](https://github.com/mobusoperandi/michie/compare/v0.2.8...v0.2.9) (2022-06-07) + + +### Bug fixes + +* increase michie-macro available attempts to 90 ([d32756a](https://github.com/mobusoperandi/michie/commit/d32756ae57a30b45a2a097946bdd5fe3e7493b57)) + ## [0.2.8](https://github.com/mobusoperandi/michie/compare/v0.2.7...v0.2.8) (2022-06-06) diff --git a/Cargo.lock b/Cargo.lock index 6544544..24d40df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1675,7 +1675,7 @@ dependencies = [ [[package]] name = "michie" -version = "0.2.8" +version = "0.2.9" dependencies = [ "cargo-edit", "cargo-make", @@ -1695,7 +1695,7 @@ dependencies = [ [[package]] name = "michie-macro" -version = "0.2.8" +version = "0.2.9" dependencies = [ "attribute-derive", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index c584d05..5f50bf9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie" -version = "0.2.8" +version = "0.2.9" edition = "2021" description = "An attribute macro that adds memoization to a function (pronounced /'mikɪ/)" repository = "https://github.com/mobusoperandi/michie" @@ -28,7 +28,7 @@ members = [ ] [dependencies] -michie-macro = { path = "macro", version = "=0.2.8" } +michie-macro = { path = "macro", version = "=0.2.9" } [dev-dependencies] cargo-edit = "0.9.1" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index a623613..1d15a53 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie-macro" -version = "0.2.8" +version = "0.2.9" edition = "2021" description = "proc-macro crate for the michie crate" repository = "https://github.com/mobusoperandi/michie"