From 4de26f8e5057e6d489b811d54fa78a407f29d708 Mon Sep 17 00:00:00 2001 From: Tristan Druyen Date: Tue, 15 Apr 2025 15:13:17 +0200 Subject: [PATCH] Bump version to 0.3.3 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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 "]