Skip to content

Commit 5371d09

Browse files
committed
Version bump
1 parent 9b520e8 commit 5371d09

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "comemo"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Laurenz <laurmaedje@gmail.com>"]
55
edition = "2021"
66
description = "Incremental computation through constrained memoization."
@@ -11,5 +11,5 @@ categories = ["caching"]
1111
keywords = ["incremental", "memoization", "tracked", "constraints"]
1212

1313
[dependencies]
14-
comemo-macros = { version = "0.1.0", path = "macros" }
14+
comemo-macros = { version = "0.2.0", path = "macros" }
1515
siphasher = "0.3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Incremental computation through constrained memoization.
66

77
```toml
88
[dependencies]
9-
comemo = "0.1"
9+
comemo = "0.2"
1010
```
1111

1212
A _memoized_ function caches its return values so that it only needs to be

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "comemo-macros"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Laurenz <laurmaedje@gmail.com>"]
55
edition = "2021"
66
description = "Procedural macros for comemo."

0 commit comments

Comments
 (0)