Fix docs & bump version to 0.3.1

This commit is contained in:
Tristan D. 2025-04-15 01:09:02 +02:00
parent ffa1dc5a7b
commit 9aa37c1519
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
4 changed files with 7 additions and 3 deletions

View file

@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
- No changes yet - No changes yet
## [0.3.1] - 2025-04-15
- Fix invalid doc links
## [0.3.0] - 2025-04-15 ## [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. After some experimentation, the API has begun to stabilize. This should likely be the last breaking change for some time.

2
Cargo.lock generated
View file

@ -85,7 +85,7 @@ dependencies = [
[[package]] [[package]]
name = "axum-folder-router" name = "axum-folder-router"
version = "0.3.0" version = "0.3.1"
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.0" version = "0.3.1"
edition = "2024" edition = "2024"
readme = "./README.md" readme = "./README.md"
authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"] authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"]

View file

@ -1,6 +1,6 @@
//! # ```axum_folder_router``` Macro Documentation //! # ```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 //! automatically generates router boilerplate based on your file structure. It
//! simplifies route organization by using filesystem conventions to define your //! simplifies route organization by using filesystem conventions to define your
//! API routes. //! API routes.