Skip to content

Commit

Permalink
mark 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Jan 1, 2025
1 parent c005ac5 commit b58463d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Unreleased

# 0.14.0

- Update axum-core to v0.5.0. #231

This also includes an version bump to tower-cookies, now at v0.11.0.

# 0.13.0

- Add option to always save session. #216
Expand Down
12 changes: 6 additions & 6 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.13.0"
version = "0.14.0"
edition = "2021"
authors = ["Max Countryman <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -40,10 +40,10 @@ signed = ["tower-cookies/signed"]
private = ["tower-cookies/private"]

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

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

async-trait = "0.1.74"
parking_lot = { version = "0.12.1", features = ["serde"] }
Expand Down Expand Up @@ -71,13 +71,13 @@ anyhow = "1"
axum = "0.8.1"
axum-core = "0.5.0"
futures = { version = "0.3.28", default-features = false, features = [
"async-await",
"async-await",
] }
http = "1.0"
http-body-util = "0.1"
hyper = "1.0"
reqwest = { version = "0.12.3", default-features = false, features = [
"rustls-tls",
"rustls-tls",
] }
serde = "1.0.192"
time = "0.3.30"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Session data persistence is managed by user-provided types that implement
`SessionStore`. What this means is that applications can and should
implement session stores to fit their specific needs.

That said, a number of session store implmentations already exist and may be
That said, a number of session store implementations already exist and may be
useful starting points.

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

```toml
[dependencies]
tower-sessions = "0.13.0"
tower-sessions = "0.14.0"
```

## 🤸 Usage
Expand Down
2 changes: 1 addition & 1 deletion memory-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ time = { workspace = true }
tokio = { workspace = true }

[dev-dependencies]
tower-sessions = { workspace = true }
tower-sessions = { path = "../" }
4 changes: 2 additions & 2 deletions tower-sessions-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async-trait = { workspace = true }
axum-core = { version = "0.5.0", optional = true }
base64 = "0.22.0"
futures = { version = "0.3.28", default-features = false, features = [
"async-await",
"async-await",
] }
http = "1.0"
parking_lot = { version = "0.12.1", features = ["serde"] }
Expand All @@ -31,7 +31,7 @@ tokio = { workspace = true }
tracing = { version = "0.1.40", features = ["log"] }

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

0 comments on commit b58463d

Please sign in to comment.