diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e045b..e9c405f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.11.1 + +- Update `tower-sessions` to `0.11.1` + # 0.1.0 - Initial release :tada: \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 4af1cd0..06c46e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,3 @@ [workspace] -members = ["tests"] +members = ["tests", "rusqlite-store"] resolver = "2" diff --git a/README.md b/README.md index 428f2d4..9497236 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,6 @@ This is an unofficial fork of the original `tower-sessions-stores`. I'm relative ## 🙏 Credits All credits go to the original authors of `tower-sessions-stores` and `tower-sessions`. + \ No newline at end of file diff --git a/rusqlite-store/Cargo.toml b/rusqlite-store/Cargo.toml index 2327194..e91a751 100644 --- a/rusqlite-store/Cargo.toml +++ b/rusqlite-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tower-sessions-rusqlite-store" description = "(tokio-)rusqlite session store for `tower-sessions`." -version = "0.1.0" +version = "0.11.1" edition = "2021" authors = ["Patrick Recher
", "Max Countryman