From f69d2dbf40c17b867f3d89a3182dd52501bf53c8 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Thu, 31 Mar 2022 20:43:34 +0200 Subject: [PATCH] axum-macros: Version 0.2.0 --- axum-macros/CHANGELOG.md | 4 ++++ axum-macros/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md index 9f7a9a86..729bb732 100644 --- a/axum-macros/CHANGELOG.md +++ b/axum-macros/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Unreleased +- None. + +# 0.2.0 (31. March, 2022) + - **breaking:** Routes are now required to start with `/`. Previously empty routes or routes such as `:foo` would be accepted but most likely result in bugs ([#823]) diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml index bdcd173b..d54a44f6 100644 --- a/axum-macros/Cargo.toml +++ b/axum-macros/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" name = "axum-macros" readme = "README.md" repository = "https://github.com/tokio-rs/axum" -version = "0.1.2" +version = "0.2.0" [lib] proc-macro = true @@ -20,7 +20,7 @@ quote = "1.0" syn = { version = "1.0", features = ["full"] } [dev-dependencies] -axum = { path = "../axum", version = "0.4", features = ["headers"] } +axum = { path = "../axum", version = "0.5", features = ["headers"] } axum-extra = { path = "../axum-extra", version = "0.1", features = ["typed-routing"] } rustversion = "1.0" serde = { version = "1.0", features = ["derive"] }