Bump version to 0.3.3

This commit is contained in:
Tristan D. 2025-04-15 15:13:17 +02:00
parent ca7262d40e
commit 4de26f8e50
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
3 changed files with 10 additions and 2 deletions

View file

@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
- No changes yet - 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 ## [0.3.2] - 2025-04-15
- Refactor internals - Refactor internals
- Add solid testing - Add solid testing

2
Cargo.lock generated
View file

@ -94,7 +94,7 @@ dependencies = [
[[package]] [[package]]
name = "axum-folder-router" name = "axum-folder-router"
version = "0.3.2" version = "0.3.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"axum", "axum",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "axum-folder-router" name = "axum-folder-router"
version = "0.3.2" version = "0.3.3"
edition = "2024" edition = "2024"
readme = "./README.md" readme = "./README.md"
authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"] authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"]