diff --git a/Cargo.toml b/Cargo.toml index 3924afd..757309b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,4 +21,4 @@ authors = ["DDtKey "] [workspace.dependencies] protect-endpoints-proc-macro = { path = "proc-macro", version = "0.3.2" } -protect-endpoints-core = { path = "core", version = "0.1.1" } +protect-endpoints-core = { path = "core", version = "0.1.2" } diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 2bb2822..935be0f 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.1.2] - 2024-05-30 + +### Documentation + +- Include readme into crates documentation ([#100](/~https://github.com/DDtKey/protect-endpoints/pull/100)) + + ## [0.1.1] - 2024-04-10 ### Refactor diff --git a/core/Cargo.toml b/core/Cargo.toml index 2a54803..5eb973c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-endpoints-core" -version = "0.1.1" +version = "0.1.2" description = "Core primitives for protecting endpoints within `*-grants` ecosystem" readme = "../README.md" keywords = ["protect", "endpoint", "authz", "security", "grants"] diff --git a/protect-axum/CHANGELOG.md b/protect-axum/CHANGELOG.md index b6f158a..ad1bd2d 100644 --- a/protect-axum/CHANGELOG.md +++ b/protect-axum/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.1.2] - 2024-05-30 + +### Documentation + +- Include readme into crates documentation ([#100](/~https://github.com/DDtKey/protect-endpoints/pull/100)) + + ## [0.1.1] - 2024-05-29 ### Miscellaneous Tasks diff --git a/protect-axum/Cargo.toml b/protect-axum/Cargo.toml index 626b924..f7de608 100644 --- a/protect-axum/Cargo.toml +++ b/protect-axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-axum" -version = "0.1.1" +version = "0.1.2" 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 new file mode 100644 index 0000000..e19ef28 --- /dev/null +++ b/protect-salvo/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.1.1] - 2024-05-30 + +### Documentation + +- Include readme into crates documentation ([#100](/~https://github.com/DDtKey/protect-endpoints/pull/100)) + + diff --git a/protect-salvo/Cargo.toml b/protect-salvo/Cargo.toml index 72cf3d1..8868819 100644 --- a/protect-salvo/Cargo.toml +++ b/protect-salvo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protect-salvo" -version = "0.1.0" +version = "0.1.1" description = "Authorization extension `salvo` to protect your endpoints" readme = "README.md" keywords = ["salvo", "auth", "security", "grants", "permissions"]