1
0
Fork 0
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 ()

This commit is contained in:
David Pedersen 2021-12-02 20:02:38 +01:00 committed by GitHub
parent 3ec680cce7
commit a63843d6c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 16 additions and 4 deletions

View file

@ -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.

View file

@ -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"

View file

@ -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"

View file

@ -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.

View file

@ -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"

View file

@ -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

View file

@ -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"