Skip to content

Commit e27ecce

Browse files
committed
mark 0.11.1
1 parent 6a62523 commit e27ecce

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Unreleased
22

3+
# 0.11.1
4+
5+
- Ensure `session.set_expiry` updates record. #175
6+
- Provide `signed` and `private` features, enabling signing and encryption respectively. #157
7+
38
# 0.11.0
49

510
- Uses slices when encoding and decoding `Id`. #159

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "memory-store", "tower-sessions-core"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.11.0"
6+
version = "0.11.1"
77
edition = "2021"
88
authors = ["Max Countryman <hello@maxcountryman.com>"]
99
license = "MIT"
@@ -40,10 +40,10 @@ signed = ["tower-cookies/signed"]
4040
private = ["tower-cookies/private"]
4141

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

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

4848
async-trait = "0.1.74"
4949
parking_lot = { version = "0.12.1", features = ["serde"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ useful starting points.
6060
| ---------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ |
6161
| [`tower-sessions-dynamodb-store`](https://github.com/necrobious/tower-sessions-dynamodb-store) | Yes | DynamoDB session store |
6262
| [`tower-sessions-firestore-store`](https://github.com/AtTheTavern/tower-sessions-firestore-store) | Yes | Firestore session store |
63-
| [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
6463
| [`tower-sessions-libsql-store`](https://github.com/daybowbow-dev/tower-sessions-libsql-store) | Yes | libSQL session store |
64+
| [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
6565
| [`tower-sessions-moka-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/moka-store) | No | Moka session store |
6666
| [`tower-sessions-redis-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/redis-store) | Yes | Redis via `fred` session store |
6767
| [`tower-sessions-rusqlite-store`](https://github.com/patte/tower-sessions-rusqlite-store) | Yes | Rusqlite session store |
@@ -81,7 +81,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:
8181

8282
```toml
8383
[dependencies]
84-
tower-sessions = "0.11.0"
84+
tower-sessions = "0.11.1"
8585
```
8686

8787
## 🤸 Usage

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
//! | ---------------------------------------------------------------------------------------------------------------- | ---------- | ------------------------------------------ |
3737
//! | [`tower-sessions-dynamodb-store`](https://github.com/necrobious/tower-sessions-dynamodb-store) | Yes | DynamoDB session store |
3838
//! | [`tower-sessions-firestore-store`](https://github.com/AtTheTavern/tower-sessions-firestore-store) | Yes | Firestore session store |
39+
//! | [`tower-sessions-libsql-store`](https://github.com/daybowbow-dev/tower-sessions-libsql-store) | Yes | libSQL session store |
3940
//! | [`tower-sessions-mongodb-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/mongodb-store) | Yes | MongoDB session store |
4041
//! | [`tower-sessions-moka-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/moka-store) | No | Moka session store |
4142
//! | [`tower-sessions-redis-store`](https://github.com/maxcountryman/tower-sessions-stores/tree/main/redis-store) | Yes | Redis via `fred` session store |

0 commit comments

Comments
 (0)