diff --git a/CHANGELOG.md b/CHANGELOG.md index 59da0bc..1b6c676 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Unreleased +# 0.3.0 + +After a lot of experimenting it seems I'm starting to settle on an API, so this should likely be the last breaking change in a while. + ## Breaking + ### Rework into attribute macro. -Instead of using it like this +Instead of this ```rust // ... diff --git a/Cargo.lock b/Cargo.lock index 4e16646..03c9def 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,7 +85,7 @@ dependencies = [ [[package]] name = "axum-folder-router" -version = "0.2.3" +version = "0.3.0" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 4d53d52..72691c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-folder-router" -version = "0.2.3" +version = "0.3.0" edition = "2024" readme = "./README.md" authors = ["Tristan Druyen "] diff --git a/src/lib.rs b/src/lib.rs index e9192b8..02f93bb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! axum_folder_router = "0.2" +//! axum_folder_router = "0.3" //! axum = "0.8" //! ``` //!