Skip to content

Commit b58463d

Browse files
committed
mark 0.14.0
1 parent c005ac5 commit b58463d

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.md

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

3+
# 0.14.0
4+
5+
- Update axum-core to v0.5.0. #231
6+
7+
This also includes an version bump to tower-cookies, now at v0.11.0.
8+
39
# 0.13.0
410

511
- Add option to always save session. #216

Cargo.toml

Lines changed: 6 additions & 6 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.13.0"
6+
version = "0.14.0"
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.13.0", path = ".", default-features = false }
43+
tower-sessions = { version = "=0.14.0", path = ".", default-features = false }
4444

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

4848
async-trait = "0.1.74"
4949
parking_lot = { version = "0.12.1", features = ["serde"] }
@@ -71,13 +71,13 @@ anyhow = "1"
7171
axum = "0.8.1"
7272
axum-core = "0.5.0"
7373
futures = { version = "0.3.28", default-features = false, features = [
74-
"async-await",
74+
"async-await",
7575
] }
7676
http = "1.0"
7777
http-body-util = "0.1"
7878
hyper = "1.0"
7979
reqwest = { version = "0.12.3", default-features = false, features = [
80-
"rustls-tls",
80+
"rustls-tls",
8181
] }
8282
serde = "1.0.192"
8383
time = "0.3.30"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Session data persistence is managed by user-provided types that implement
5353
`SessionStore`. What this means is that applications can and should
5454
implement session stores to fit their specific needs.
5555

56-
That said, a number of session store implmentations already exist and may be
56+
That said, a number of session store implementations already exist and may be
5757
useful starting points.
5858

5959
| Crate | Persistent | Description |
@@ -83,7 +83,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file:
8383

8484
```toml
8585
[dependencies]
86-
tower-sessions = "0.13.0"
86+
tower-sessions = "0.14.0"
8787
```
8888

8989
## 🤸 Usage

memory-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ time = { workspace = true }
1515
tokio = { workspace = true }
1616

1717
[dev-dependencies]
18-
tower-sessions = { workspace = true }
18+
tower-sessions = { path = "../" }

tower-sessions-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async-trait = { workspace = true }
1818
axum-core = { version = "0.5.0", optional = true }
1919
base64 = "0.22.0"
2020
futures = { version = "0.3.28", default-features = false, features = [
21-
"async-await",
21+
"async-await",
2222
] }
2323
http = "1.0"
2424
parking_lot = { version = "0.12.1", features = ["serde"] }
@@ -31,7 +31,7 @@ tokio = { workspace = true }
3131
tracing = { version = "0.1.40", features = ["log"] }
3232

3333
[dev-dependencies]
34-
tower-sessions = { workspace = true, features = ["memory-store"] }
34+
tower-sessions = { path = "../", features = ["memory-store"] }
3535
tokio-test = "0.4.3"
3636
tokio = { workspace = true, features = ["rt", "macros"] }
3737
mockall = "0.13.0"

0 commit comments

Comments
 (0)