diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b2d756..30c5e9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file. - No changes yet +## [0.3.3] - 2025-04-15 + +### Added +- Add support for remaining HTTP methods + - we no support the full set as defined by rfc9110 + - trace & connect were missing specifically +- Add support for `any` axum router method (default method router, others will take precedence) + ## [0.3.2] - 2025-04-15 - Refactor internals - Add solid testing diff --git a/Cargo.lock b/Cargo.lock index 64afad5..147683f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "axum-folder-router" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 32e2a06..b124207 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-folder-router" -version = "0.3.2" +version = "0.3.3" edition = "2024" readme = "./README.md" authors = ["Tristan Druyen "]