Skip to content

Commit

Permalink
Release for axum session 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
genusistimelord committed Apr 12, 2024
1 parent 027432e commit a1ff3e8
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## Unreleased

## 0.14.0 (12. April, 2024)
### Added
- (Breaking) Split Databases into their own libraries Other than the SessionNullPool and SessionAnyPool

## 0.13.0 (11. March, 2024)
### Added
- Options to enable and disable certain ip and user agent patterns.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ members = [

[package]
name = "axum_session"
version = "0.13.0"
version = "0.14.0"
authors = ["Andrew Wheeler <[email protected]>"]
description = "📝 Session management layer for axum that supports HTTP and Rest."
edition = "2021"
Expand Down Expand Up @@ -65,7 +65,7 @@ forwarded-header-value = "0.1.1"
fastbloom-rs = { version = "0.5.9", optional = true }

[workspace.dependencies]
axum_session = {version = "0.13.0", path = "./"}
axum_session = {version = "0.14.0", path = "./"}
chrono = { version = "0.4.31", default-features = false, features = [
"clock",
"serde",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ to your cargo include for Axum Session.
# Cargo.toml
[dependencies]
# Postgres + rustls
axum_session = { version = "0.13.0" }
axum_session = { version = "0.14.0" }
```

## 📱 Cargo Feature Flags
Expand Down
2 changes: 1 addition & 1 deletion databases/mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If you need help with this library or have suggestions please go to our [Discord
# Cargo.toml
[dependencies]
# Postgres + rustls
axum_session = { version = "0.13.0" }
axum_session = { version = "0.14.0" }
axum_session_mongo = { version = "0.1.0" }
```

Expand Down
2 changes: 1 addition & 1 deletion databases/redispool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you need help with this library or have suggestions please go to our [Discord
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.13.0" }
axum_session = { version = "0.14.0" }
axum_session_redispool = { version = "0.1.0" }
```

Expand Down
1 change: 1 addition & 0 deletions databases/sqlx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ to your cargo include for Axum Session Sqlx.
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.14.0" }
# Postgres + rustls
axum_session_sqlx = { version = "0.1.0", features = [ "postgres", "tls-rustls"] }
```
Expand Down
2 changes: 1 addition & 1 deletion databases/surreal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you need help with this library or have suggestions please go to our [Discord
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.13.0" }
axum_session = { version = "0.14.0" }
axum_session_surreal = { version = "0.1.0" }
```

Expand Down

0 comments on commit a1ff3e8

Please sign in to comment.