diff --git a/CHANGELOG.md b/CHANGELOG.md index 96002d4..9e3d130 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file. - No changes yet +## [0.3.1] - 2025-04-15 + +- Fix invalid doc links + ## [0.3.0] - 2025-04-15 After some experimentation, the API has begun to stabilize. This should likely be the last breaking change for some time. diff --git a/Cargo.lock b/Cargo.lock index 03c9def..2d4947d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,7 +85,7 @@ dependencies = [ [[package]] name = "axum-folder-router" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 72691c5..c6efafa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-folder-router" -version = "0.3.0" +version = "0.3.1" edition = "2024" readme = "./README.md" authors = ["Tristan Druyen "] diff --git a/src/lib.rs b/src/lib.rs index 3abc408..a706c60 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! # ```axum_folder_router``` Macro Documentation //! -//! [folder_router!] is a procedural macro for the Axum web framework that +//! [macro@folder_router] is a procedural macro for the Axum web framework that //! automatically generates router boilerplate based on your file structure. It //! simplifies route organization by using filesystem conventions to define your //! API routes.