Skip to content

Commit

Permalink
mark v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Jan 4, 2024
1 parent 7eb5205 commit cc94a4f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 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.9.1

- Ensure `clear` works before record loading. #134

# 0.9.0

**Breakiung Changes**
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.9.0"
version = "0.9.1"
edition = "2021"
authors = ["Max Countryman <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -58,14 +58,14 @@ postgres-store = ["sqlx-store", "tower-sessions-sqlx-store/postgres"]
mysql-store = ["sqlx-store", "tower-sessions-sqlx-store/mysql"]

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

tower-sessions-core = { version = "=0.9.0", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.9.0", path = "memory-store" }
tower-sessions-moka-store = { version = "=0.9.0", path = "moka-store" }
tower-sessions-redis-store = { version = "=0.9.0", path = "redis-store" }
tower-sessions-mongodb-store = { version = "=0.9.0", path = "mongodb-store" }
tower-sessions-sqlx-store = { version = "=0.9.0", path = "sqlx-store" }
tower-sessions = { version = "=0.9.1", path = ".", default-features = false }

tower-sessions-core = { version = "=0.9.1", path = "tower-sessions-core", default-features = false }
tower-sessions-memory-store = { version = "=0.9.1", path = "memory-store" }
tower-sessions-moka-store = { version = "=0.9.1", path = "moka-store" }
tower-sessions-redis-store = { version = "=0.9.1", path = "redis-store" }
tower-sessions-mongodb-store = { version = "=0.9.1", path = "mongodb-store" }
tower-sessions-sqlx-store = { version = "=0.9.1", path = "sqlx-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 @@ -60,7 +60,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
tower-sessions = "0.9.0"
tower-sessions = "0.9.1"
```

## 🤸 Usage
Expand Down

0 comments on commit cc94a4f

Please sign in to comment.