Skip to content

Commit

Permalink
mark 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Mar 17, 2024
1 parent 6a62523 commit e27ecce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Unreleased

# 0.11.1

- Ensure `session.set_expiry` updates record. #175
- Provide `signed` and `private` features, enabling signing and encryption respectively. #157

# 0.11.0

- Uses slices when encoding and decoding `Id`. #159
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.11.0"
version = "0.11.1"
edition = "2021"
authors = ["Max Countryman <hello@maxcountryman.com>"]
license = "MIT"
Expand Down Expand Up @@ -40,10 +40,10 @@ signed = ["tower-cookies/signed"]
private = ["tower-cookies/private"]

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

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

async-trait = "0.1.74"
parking_lot = { version = "0.12.1", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ useful starting points.
| ---------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ |
| [`tower-sessions-dynamodb-store`](https://github.com/necrobious/tower-sessions-dynamodb-store) | Yes | DynamoDB session store |
| [`tower-sessions-firestore-store`](https://github.com/AtTheTavern/tower-sessions-firestore-store) | Yes | Firestore session store |
| [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
| [`tower-sessions-libsql-store`](https://github.com/daybowbow-dev/tower-sessions-libsql-store) | Yes | libSQL session store |
| [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
| [`tower-sessions-moka-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/moka-store) | No | Moka session store |
| [`tower-sessions-redis-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/redis-store) | Yes | Redis via `fred` session store |
| [`tower-sessions-rusqlite-store`](https://github.com/patte/tower-sessions-rusqlite-store) | Yes | Rusqlite session store |
Expand All @@ -81,7 +81,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
tower-sessions = "0.11.0"
tower-sessions = "0.11.1"
```

## 🤸 Usage
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
//! | ---------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ |
//! | [`tower-sessions-dynamodb-store`](https://github.com/necrobious/tower-sessions-dynamodb-store) | Yes | DynamoDB session store |
//! | [`tower-sessions-firestore-store`](https://github.com/AtTheTavern/tower-sessions-firestore-store) | Yes | Firestore session store |
//! | [`tower-sessions-libsql-store`](https://github.com/daybowbow-dev/tower-sessions-libsql-store) | Yes | libSQL session store |
//! | [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
//! | [`tower-sessions-moka-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/moka-store) | No | Moka session store |
//! | [`tower-sessions-redis-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/redis-store) | Yes | Redis via `fred` session store |
Expand Down

0 comments on commit e27ecce

Please sign in to comment.