diff --git a/CHANGELOG.md b/CHANGELOG.md index 2328a3a..4104356 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [3.0.0](https://github.com/mobusoperandi/michie/compare/v2.0.0...v3.0.0) (2022-10-24) + + +### ⚠ BREAKING CHANGES + +* no default store type + +Co-authored-by: José Manuel Peña + +### Features + +* no default store type ([6707a4b](https://github.com/mobusoperandi/michie/commit/6707a4ba153997ca5b3d76ec8abbec83122edb5d)) + ## [2.0.0](https://github.com/mobusoperandi/michie/compare/v1.1.0...v2.0.0) (2022-10-24) diff --git a/Cargo.lock b/Cargo.lock index 03bb65f..ea477c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "michie" -version = "2.0.0" +version = "3.0.0" dependencies = [ "cargo-edit", "cargo-make", @@ -1746,7 +1746,7 @@ dependencies = [ [[package]] name = "michie-macro" -version = "2.0.0" +version = "3.0.0" dependencies = [ "attribute-derive", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 184cd66..fee0464 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie" -version = "2.0.0" +version = "3.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 = "=2.0.0" } +michie-macro = { path = "macro", version = "=3.0.0" } [dev-dependencies] cargo-edit = "0.11.5" diff --git a/macro/Cargo.toml b/macro/Cargo.toml index c78f8a4..8c6fa4f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "michie-macro" -version = "2.0.0" +version = "3.0.0" edition = "2021" description = "proc-macro crate for the michie crate" repository = "https://github.com/mobusoperandi/michie"