mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-21 14:46:32 +01:00
Release all the crates (#1812)
This commit is contained in:
parent
db22b7309d
commit
bc3c35ea5a
8 changed files with 24 additions and 10 deletions
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.3.3 (03. March, 2023)
|
||||
|
||||
- **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809])
|
||||
|
||||
[#1809]: https://github.com/tokio-rs/axum/pull/1809
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-core"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.2" # remember to also bump the version that axum depends on
|
||||
version = "0.3.3" # remember to also bump the version that axum depends on
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1"
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.7.0 (03. March, 2023)
|
||||
|
||||
- **breaking:** Remove the `spa` feature which should have been removed in 0.6.0 ([#1802])
|
||||
- **added:** Add `Multipart`. This is similar to `axum::extract::Multipart`
|
||||
except that it enforces field exclusivity at runtime instead of compile time,
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.6.0"
|
||||
version = "0.7.0"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
@ -48,7 +48,7 @@ tower-layer = "0.3"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true }
|
||||
cookie = { package = "cookie", version = "0.17", features = ["percent-encode"], optional = true }
|
||||
form_urlencoded = { version = "1.1.0", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.3.5 (03. March, 2023)
|
||||
|
||||
- **fixed:** In `#[debug_handler]` provide specific errors about `FromRequest`
|
||||
extractors not being the last argument ([#1797])
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.4" # remember to also bump the version that axum and axum-extra depends on
|
||||
version = "0.3.5" # remember to also bump the version that axum and axum-extra depends on
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
@ -30,7 +30,7 @@ syn = { version = "1.0", features = [
|
|||
|
||||
[dev-dependencies]
|
||||
axum = { path = "../axum", version = "0.6.0", features = ["headers", "macros"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.6.0", features = ["typed-routing", "cookie-private"] }
|
||||
axum-extra = { path = "../axum-extra", version = "0.7.0", features = ["typed-routing", "cookie-private"] }
|
||||
rustversion = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
|
|
|
@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.6.10 (03. March, 2023)
|
||||
|
||||
- **fixed:** Add `#[must_use]` attributes to types that do nothing unless used ([#1809])
|
||||
- **fixed:** Add `#[must_use]` to `WebSocketUpgrade::on_upgrade` ([#1801])
|
||||
- **fixed:** Gracefully handle missing headers in the `TypedHeader` extractor ([#1810])
|
||||
- **fixed:** Fix routing issues when loading a `Router` via a dynamic library ([#1806])
|
||||
|
||||
[#1801]: https://github.com/tokio-rs/axum/pull/1801
|
||||
[#1806]: https://github.com/tokio-rs/axum/pull/1806
|
||||
[#1809]: https://github.com/tokio-rs/axum/pull/1809
|
||||
[#1810]: https://github.com/tokio-rs/axum/pull/1810
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.6.9"
|
||||
version = "0.6.10"
|
||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2021"
|
||||
|
@ -62,7 +62,7 @@ __private_docs = [
|
|||
|
||||
[dependencies]
|
||||
async-trait = "0.1.43"
|
||||
axum-core = { path = "../axum-core", version = "0.3.2" }
|
||||
axum-core = { path = "../axum-core", version = "0.3.3" }
|
||||
bitflags = "1.0"
|
||||
bytes = "1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
|
@ -83,7 +83,7 @@ tower-layer = "0.3.2"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.4", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.5", optional = true }
|
||||
base64 = { version = "0.21.0", optional = true }
|
||||
headers = { version = "0.3.7", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
|
|
Loading…
Reference in a new issue