Skip to content

Commit

Permalink
mark v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Feb 6, 2024
1 parent 9c883d3 commit 5e82508
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

# 0.10.2

- Ensure "Path" and "Domain" are set on removal cookie #154

# 0.10.1

- Ensure `Expires: Session` #149
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "memory-store", "tower-sessions-core"]
resolver = "2"

[workspace.package]
version = "0.10.1"
version = "0.10.2"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand Down Expand Up @@ -38,10 +38,10 @@ axum-core = ["tower-sessions-core/axum-core"]
memory-store = ["tower-sessions-memory-store"]

[workspace.dependencies]
tower-sessions = { version = "=0.10.1", path = ".", default-features = false }
tower-sessions = { version = "=0.10.2", path = ".", default-features = false }

tower-sessions-core = { version = "=0.10.1", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.10.1", path = "memory-store" }
tower-sessions-core = { version = "=0.10.2", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.10.2", path = "memory-store" }

async-trait = "0.1.74"
parking_lot = { version = "0.12.1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
tower-sessions = "0.10.1"
tower-sessions = "0.10.2"
```

## 🤸 Usage
Expand Down

0 comments on commit 5e82508

Please sign in to comment.