Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
genusistimelord committed Dec 21, 2023
1 parent 5b2ebcb commit 3debb57
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 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.11.0 (21. December, 2023)
### Changed
- (Breaking) Updated to Axum_session 0.11.0 for Redis_pool 0.3

## 0.10.1 (12. December, 2023)
### Fixed
- Documents not building.
Expand Down
14 changes: 7 additions & 7 deletions 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 @@ -9,7 +9,7 @@ members = [

[package]
name = "axum_session_auth"
version = "0.10.1"
version = "0.11.0"
authors = ["Andrew Wheeler <genusistimelord@gmail.com>"]
description = "Library to Provide a User Authentication and privilege Token Checks. It requires the Axum_Session library."
edition = "2021"
Expand Down Expand Up @@ -55,7 +55,7 @@ serde = "1.0.192"
#path = "C:/Sources/AxumSession"
#git = "https://github.com/AscendingCreations/AxumSessions.git"
#branch = "axum0.6"
version = "0.10.0"
version = "0.11.0"
default-features = false

[package.metadata.docs.rs]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you need help with this library or have suggestions please go to our [Discord
# Cargo.toml
[dependencies]
# Postgres + rustls
axum_session_auth = { version = "0.10.0", features = [ "postgres-rustls" ] }
axum_session_auth = { version = "0.11.0", features = [ "postgres-rustls" ] }
```

#### Cargo Feature Flags
Expand All @@ -56,9 +56,9 @@ axum_session_auth = { version = "0.10.0", features = [ "postgres-rustls" ] }

`mysql-native`: `Sqlx` support for the MySQL/MariaDB database server and `native-tls`.

`redis-db`: `redis_pool 0.2.1` session support. Enables Redis Client Pool
`redis-db`: `redis_pool` session support. Enables Redis Client Pool

`redis-clusterdb`: `redis_pool 0.2.0` session support. Enabled Redis ClusterClient Pool.
`redis-clusterdb`: `redis_pool` session support. Enabled Redis ClusterClient Pool.

`surreal`: `1.0.0` support for surrealdb.

Expand Down
2 changes: 1 addition & 1 deletion examples/NoPoolType/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ anyhow = "1.0.71"
serde = "1.0.167"

[dependencies.axum_session]
version = "0.10.0"
version = "0.11.0"
features = ["sqlite-rustls"]

[dependencies.axum_session_auth]
Expand Down
2 changes: 1 addition & 1 deletion examples/sqlx-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ anyhow = "1.0.71"
serde = "1.0.167"

[dependencies.axum_session]
version = "0.10.0"
version = "0.11.0"
features = ["sqlite-rustls"]

[dependencies.axum_session_auth]
Expand Down
2 changes: 1 addition & 1 deletion examples/surrealdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ anyhow = "1.0.71"
serde = "1.0.167"

[dependencies.axum_session]
version = "0.10.0"
version = "0.11.0"
features = ["surreal"]

[dependencies.axum_session_auth]
Expand Down

0 comments on commit 3debb57

Please sign in to comment.