diff --git a/CHANGELOG.md b/CHANGELOG.md index c35d743..c4f2725 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Unreleased +# 0.6.0 + +- Update `tower-sessions` to 0.12.0 + # 0.5.0 **Breaking Changes** diff --git a/Cargo.toml b/Cargo.toml index 03b0056..44bde77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ parking_lot = "0.12.1" serde = { version = "1.0.195", features = ["derive"] } serde_json = "1" tower = "0.4" -tower-sessions-core = "0.11.0" +tower-sessions-core = "0.12.0" [dev-dependencies] axum = { version = "0.7.0", features = ["macros"] } @@ -27,7 +27,7 @@ http-body-util = "0.1" hyper = "1.0" tokio = { version = "1.20", features = ["macros", "rt-multi-thread"] } tower = "0.4" -tower-sessions = "0.11.0" +tower-sessions = "0.12.0" [[example]] name = "basic" diff --git a/README.md b/README.md index 94133ed..0a1f27b 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file: ```toml [dependencies] -axum-messages = "0.5.0" +axum-messages = "0.6.0" ``` ## 🤸 Usage