1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

axum: Version 0.4.2 ()

* axum: Version 0.4.2

This time depending on the correct version of axum-core.

* add missing changelog links
This commit is contained in:
David Pedersen 2021-12-06 13:03:13 +01:00 committed by GitHub
parent 8e1341d1f6
commit 9f6be24ecd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View file

@ -11,7 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# 0.1.1 (06. December, 2021)
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
- **added:** `axum_core::response::Response` now exists as a shorthand for writing `Response<BoxBody>` ([#590])
[#590]: https://github.com/tokio-rs/axum/pull/590
# 0.1.0 (02. December, 2021)

View file

@ -9,9 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
# 0.4.2 (06. December, 2021)
- **fix:** Depend on the correct version of `axum-core` ([#592])
[#592]: https://github.com/tokio-rs/axum/pull/592
# 0.4.1 (06. December, 2021)
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>`.
- **added:** `axum::response::Response` now exists as a shorthand for writing `Response<BoxBody>` ([#590])
[#590]: https://github.com/tokio-rs/axum/pull/590
# 0.4.0 (02. December, 2021)

View file

@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.4.1"
version = "0.4.2"
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2018"
@ -20,7 +20,7 @@ tower-log = ["tower/log"]
ws = ["tokio-tungstenite", "sha-1", "base64"]
[dependencies]
axum-core = { path = "../axum-core", version = "0.1" }
axum-core = { path = "../axum-core", version = "0.1.1" }
async-trait = "0.1.43"
bitflags = "1.0"
bytes = "1.0"