mirror of
https://github.com/tokio-rs/axum.git
synced 2025-04-26 13:56:22 +02:00
Release axum, axum-core, and axum-extra (#582)
This commit is contained in:
parent
3ec680cce7
commit
a63843d6c5
7 changed files with 16 additions and 4 deletions
axum-core
axum-debug
axum-extra
axum
|
@ -8,3 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.1.0 (02. December, 2021)
|
||||
|
||||
- Initial release.
|
||||
|
|
|
@ -20,5 +20,5 @@ mime = "0.3.16"
|
|||
|
||||
[dev-dependencies]
|
||||
futures-util = "0.3"
|
||||
axum = { path = "../axum", version = "0.3" }
|
||||
axum = { path = "../axum", version = "0.4" }
|
||||
hyper = "0.14"
|
||||
|
|
|
@ -19,6 +19,6 @@ quote = "1.0"
|
|||
syn = { version = "1.0", features = ["full"] }
|
||||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.3" }
|
||||
axum = { path = "../axum", version = "0.4" }
|
||||
trybuild = "1.0"
|
||||
rustversion = "1.0"
|
||||
|
|
|
@ -8,3 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.1.0 (02. December, 2021)
|
||||
|
||||
- Initial release.
|
||||
|
|
|
@ -14,7 +14,7 @@ version = "0.1.0"
|
|||
erased-json = ["serde", "serde_json"]
|
||||
|
||||
[dependencies]
|
||||
axum = { path = "../axum", version = "0.3" }
|
||||
axum = { path = "../axum", version = "0.4" }
|
||||
http = "0.2"
|
||||
mime = "0.3"
|
||||
tower-service = "0.3"
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.4.0 (02. December, 2021)
|
||||
|
||||
- **breaking:** New `MethodRouter` that works similarly to `Router`:
|
||||
- Route to handlers and services with the same type
|
||||
- Add middleware to some routes more easily with `MethodRouter::layer` and
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.3.3"
|
||||
version = "0.4.0"
|
||||
categories = ["asynchronous", "network-programming", "web-programming"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2018"
|
||||
|
|
Loading…
Add table
Reference in a new issue