diff --git a/Cargo.toml b/Cargo.toml index 757309b..a666aaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,5 +20,5 @@ repository = "https://github.com/DDtKey/protect-endpoints" authors = ["DDtKey "] [workspace.dependencies] -protect-endpoints-proc-macro = { path = "proc-macro", version = "0.3.2" } -protect-endpoints-core = { path = "core", version = "0.1.2" } +protect-endpoints-proc-macro = { path = "proc-macro", version = "0.4.0" } +protect-endpoints-core = { path = "core", version = "0.2.0" } diff --git a/actix-web-grants/CHANGELOG.md b/actix-web-grants/CHANGELOG.md index 2e0bdf7..0044858 100644 --- a/actix-web-grants/CHANGELOG.md +++ b/actix-web-grants/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [4.1.2] - 2025-01-05 + +### Miscellaneous Tasks + +- Update chrono for dev-deps + + ## [4.1.1] - 2024-05-29 ### Styling diff --git a/actix-web-grants/Cargo.toml b/actix-web-grants/Cargo.toml index 6909e7b..0f5a9e4 100644 --- a/actix-web-grants/Cargo.toml +++ b/actix-web-grants/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web-grants" -version = "4.1.1" +version = "4.1.2" description = "Authorization extension `actix-web` to protect your endpoints" readme = "README.md" keywords = ["actix", "auth", "security", "grants", "permissions"] diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 935be0f..f64ae7d 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2025-01-05 + +### Features + +- [**breaking**] Support `axum 0.8` version + +### Miscellaneous Tasks + +- [**breaking**] Update tower to `0.5.0` + + ## [0.1.2] - 2024-05-30 ### Documentation diff --git a/core/Cargo.toml b/core/Cargo.toml index f429995..4803f1d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-endpoints-core" -version = "0.1.2" +version = "0.2.0" description = "Core primitives for protecting endpoints within `*-grants` ecosystem" readme = "../README.md" keywords = ["protect", "endpoint", "authz", "security", "grants"] diff --git a/poem-grants/CHANGELOG.md b/poem-grants/CHANGELOG.md index 3a8a197..db8ee50 100644 --- a/poem-grants/CHANGELOG.md +++ b/poem-grants/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [3.0.2] - 2025-01-05 + +### Miscellaneous Tasks + +- Update chrono for dev-deps + + ## [3.0.1] - 2024-05-29 ### Styling diff --git a/poem-grants/Cargo.toml b/poem-grants/Cargo.toml index 9251246..f576df1 100644 --- a/poem-grants/Cargo.toml +++ b/poem-grants/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poem-grants" -version = "3.0.1" +version = "3.0.2" description = "Authorization extension for `poem` to protect your endpoints" readme = "README.md" keywords = ["poem", "authz", "security", "grants", "permissions"] diff --git a/proc-macro/CHANGELOG.md b/proc-macro/CHANGELOG.md index d596888..21f7398 100644 --- a/proc-macro/CHANGELOG.md +++ b/proc-macro/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.4.0] - 2025-01-05 + +### Features + +- [**breaking**] Support `salvo 0.75` (#120) + + ## [0.3.2] - 2024-05-29 ### Features diff --git a/proc-macro/Cargo.toml b/proc-macro/Cargo.toml index 0e0d604..aa84efc 100644 --- a/proc-macro/Cargo.toml +++ b/proc-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-endpoints-proc-macro" -version = "0.3.2" +version = "0.4.0" description = "A proc-macro way to protect your endpoints" readme = "../README.md" keywords = ["protect", "endpoint", "authz", "security", "grants"] diff --git a/protect-axum/CHANGELOG.md b/protect-axum/CHANGELOG.md index ad1bd2d..8aa70c3 100644 --- a/protect-axum/CHANGELOG.md +++ b/protect-axum/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2025-01-05 + +### Features + +- [**breaking**] Support `0.8` version + +### Miscellaneous Tasks + +- Update chrono for dev-deps + +### Testing + +- Use proper routing in tests for axum v0.8 + + ## [0.1.2] - 2024-05-30 ### Documentation diff --git a/protect-axum/Cargo.toml b/protect-axum/Cargo.toml index 7871df3..157c4d1 100644 --- a/protect-axum/Cargo.toml +++ b/protect-axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-axum" -version = "0.1.2" +version = "0.2.0" description = "Authorization extension for `axum` to protect your endpoints" readme = "README.md" keywords = ["axum", "auth", "security", "grants", "permissions"] diff --git a/protect-salvo/CHANGELOG.md b/protect-salvo/CHANGELOG.md index e19ef28..604cb5c 100644 --- a/protect-salvo/CHANGELOG.md +++ b/protect-salvo/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2025-01-05 + +### Features + +- [**breaking**] Support `salvo 0.75` (#120) + +### Miscellaneous Tasks + +- Update chrono for dev-deps + + ## [0.1.1] - 2024-05-30 ### Documentation diff --git a/protect-salvo/Cargo.toml b/protect-salvo/Cargo.toml index b3c5d84..cb092c6 100644 --- a/protect-salvo/Cargo.toml +++ b/protect-salvo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-salvo" -version = "0.1.1" +version = "0.2.0" description = "Authorization extension `salvo` to protect your endpoints" readme = "README.md" keywords = ["salvo", "auth", "security", "grants", "permissions"] diff --git a/rocket-grants/CHANGELOG.md b/rocket-grants/CHANGELOG.md index 1984a7d..38d9c25 100644 --- a/rocket-grants/CHANGELOG.md +++ b/rocket-grants/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.1.5] - 2025-01-05 + +### Miscellaneous Tasks + +- Update chrono for dev-deps + +### Styling + +- Apply clippy warnings + + ## [0.1.4] - 2024-03-31 ### Features diff --git a/rocket-grants/Cargo.toml b/rocket-grants/Cargo.toml index 8a2229d..b7827bb 100644 --- a/rocket-grants/Cargo.toml +++ b/rocket-grants/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket-grants" -version = "0.1.4" +version = "0.1.5" description = "Authorization extension for `rocket` to protect your endpoints" readme = "README.md" keywords = ["rocket", "authz", "security", "grants", "permissions"]