Skip to content

Commit c72c00e

Browse files
chore(release): 2.0.0 [skip ci]
## [2.0.0](v1.1.0...v2.0.0) (2022-10-24) ### ⚠ BREAKING CHANGES * The `key_type` parameter is removed. Co-authored-by: Vimal Patel <[email protected]> Co-authored-by: José Manuel Peña <[email protected]> ### Features * remove key_type parameter ([56dbf31](56dbf31)) ### Testing * underscore some intentionally unused fns ([3f84c81](3f84c81)) * update expected error messages ([c73608a](c73608a)) * update stderr files ([d0c7437](d0c7437)) ### Build system / dependencies * do not set RUSTFLAGS in Makefile ([bbae378](bbae378)) * update sub-dep libc ([131f12f](131f12f)) * upgrade cargo_toml ([3c99a7f](3c99a7f)) * upgrade cargo-edit and cargo-make ([5d2ea79](5d2ea79)) * upgrade jql ([528caae](528caae))
1 parent 3df7acf commit c72c00e

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## [2.0.0](https://github.com/mobusoperandi/michie/compare/v1.1.0...v2.0.0) (2022-10-24)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* The `key_type` parameter is removed.
7+
8+
Co-authored-by: Vimal Patel <[email protected]>
9+
Co-authored-by: José Manuel Peña <[email protected]>
10+
11+
### Features
12+
13+
* remove key_type parameter ([56dbf31](https://github.com/mobusoperandi/michie/commit/56dbf319eff35f238c98360ad66e42a77293fc37))
14+
15+
16+
### Testing
17+
18+
* underscore some intentionally unused fns ([3f84c81](https://github.com/mobusoperandi/michie/commit/3f84c819f3d6789e98e27e5bc7ec02ab0d338c2e))
19+
* update expected error messages ([c73608a](https://github.com/mobusoperandi/michie/commit/c73608a60eac99b2c96b7f7902df38ca18bcc5e2))
20+
* update stderr files ([d0c7437](https://github.com/mobusoperandi/michie/commit/d0c74372cc5a70b801244d40b6c878fb817ac09e))
21+
22+
23+
### Build system / dependencies
24+
25+
* do not set RUSTFLAGS in Makefile ([bbae378](https://github.com/mobusoperandi/michie/commit/bbae378c373184075158daddf733892505b5e0b3))
26+
* update sub-dep libc ([131f12f](https://github.com/mobusoperandi/michie/commit/131f12f1266f9c59618f39a16b89824679bf83cf))
27+
* upgrade cargo_toml ([3c99a7f](https://github.com/mobusoperandi/michie/commit/3c99a7fe8c38267a2a24e3e5eaf208503d562c47))
28+
* upgrade cargo-edit and cargo-make ([5d2ea79](https://github.com/mobusoperandi/michie/commit/5d2ea797dde46e1e211d39d400138cb2c5c550c7))
29+
* upgrade jql ([528caae](https://github.com/mobusoperandi/michie/commit/528caae9bdb973ba728cc8f3f365d9d3b45708e2))
30+
131
## [1.1.0](https://github.com/mobusoperandi/michie/compare/v1.0.0...v1.1.0) (2022-06-26)
232

333

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "michie"
3-
version = "1.1.0"
3+
version = "2.0.0"
44
edition = "2021"
55
description = "An attribute macro that adds memoization to a function (sounds like Mickey)"
66
repository = "https://github.com/mobusoperandi/michie"
@@ -28,7 +28,7 @@ members = [
2828
]
2929

3030
[dependencies]
31-
michie-macro = { path = "macro", version = "=1.1.0" }
31+
michie-macro = { path = "macro", version = "=2.0.0" }
3232

3333
[dev-dependencies]
3434
cargo-edit = "0.11.5"

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "michie-macro"
3-
version = "1.1.0"
3+
version = "2.0.0"
44
edition = "2021"
55
description = "proc-macro crate for the michie crate"
66
repository = "https://github.com/mobusoperandi/michie"

0 commit comments

Comments
 (0)