Skip to content

Commit

Permalink
update all for axum session 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
genusistimelord committed Jan 16, 2025
1 parent d412b00 commit dea5fa2
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion databases/mongo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_session_mongo"
version = "0.3.0"
version = "0.4.0"
authors = ["Andrew Wheeler <[email protected]>"]
description = "📝 Mongo Database layer for axum_session."
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions databases/mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ If you need help with this library or have suggestions please go to our [Discord
# Cargo.toml
[dependencies]
# Postgres + rustls
axum_session = { version = "0.15.0" }
axum_session_mongo = { version = "0.3.0" }
axum_session = { version = "0.16.0" }
axum_session_mongo = { version = "0.4.0" }
```

## 🔎 Examples
Expand Down
2 changes: 1 addition & 1 deletion databases/redis-bb8-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_session_redis_bb8_pool"
version = "0.2.0"
version = "0.3.0"
authors = ["Behzad Khalifeh <[email protected]>"]
description = "📝 RedisPool (BB8) Database layer for axum_session."
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion databases/redispool/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
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.15.0" }
axum_session = { version = "0.16.0" }
axum_session_redispool = { version = "0.5.0" }
```

Expand Down
4 changes: 4 additions & 0 deletions databases/sqlx/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.5.0 (16. Janurary, 2025)
### Changed
- (Breaking) AxumSession 0.16.0

## 0.3.0 (28. August, 2024)
### Changed
- (Breaking) Updated expires Column type to be BIGINT instead of INTEGER, Please Refer to Mirgration.md.
2 changes: 1 addition & 1 deletion databases/sqlx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_session_sqlx"
version = "0.4.0"
version = "0.5.0"
authors = ["Andrew Wheeler <[email protected]>"]
description = "📝 Sqlx Persistent Database layer for axum_session"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions databases/sqlx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ to your cargo include for Axum Session Sqlx.
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.15.0" }
axum_session = { version = "0.16.0" }
# Postgres + rustls
axum_session_sqlx = { version = "0.4.0", features = [ "postgres", "tls-rustls"] }
axum_session_sqlx = { version = "0.5.0", features = [ "postgres", "tls-rustls"] }
```

## 📱 Cargo Feature Flags
Expand Down
2 changes: 1 addition & 1 deletion databases/surreal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "axum_session_surreal"
version = "0.3.0"
version = "0.4.0"
authors = ["Andrew Wheeler <[email protected]>"]
description = "📝 Surreal Persistent Database layer for axum_session"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions databases/surreal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ If you need help with this library or have suggestions please go to our [Discord
```toml
# Cargo.toml
[dependencies]
axum_session = { version = "0.15.0" }
axum_session_surreal = { version = "0.3.0" }
axum_session = { version = "0.16.0" }
axum_session_surreal = { version = "0.4.0" }
```

## 🔎 Examples
Expand Down

0 comments on commit dea5fa2

Please sign in to comment.