mirror of https://github.com/tokio-rs/axum
New release candidates (#1514)
* New release candidates * Update axum/Cargo.toml Co-authored-by: Jonas Platte <jplatte+git@posteo.de> Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
This commit is contained in:
parent
9c804d506e
commit
e39d053d2f
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.3.0-rc.3 (8. November, 2022)
|
||||
|
||||
- **added:** Add `DefaultBodyLimit::max` for changing the default body limit ([#1397])
|
||||
- **added:** Add `Error::into_inner` for converting `Error` to `BoxError` without allocating ([#1476])
|
||||
- **breaking:** `AppendHeaders` now works on any `impl IntoIterator` ([#1495])
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-core"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.0-rc.2" # remember to also bump the version that axum depends on
|
||||
version = "0.3.0-rc.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.4.0-rc.2 (8. November, 2022)
|
||||
|
||||
- **breaking:** `Form` has a new rejection type ([#1496])
|
||||
- **breaking:** `Query` has a new rejection type ([#1496])
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-extra"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.4.0-rc.1"
|
||||
version = "0.4.0-rc.2"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.3.0-rc.2 (8. November, 2022)
|
||||
|
||||
- **added:** Add `#[derive(FromRef)]` ([#1430])
|
||||
|
||||
[#1430]: https://github.com/tokio-rs/axum/pull/1430
|
||||
|
|
|
@ -9,7 +9,7 @@ license = "MIT"
|
|||
name = "axum-macros"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tokio-rs/axum"
|
||||
version = "0.3.0-rc.1" # remember to also bump the version that axum and axum-extra depends on
|
||||
version = "0.3.0-rc.2" # remember to also bump the version that axum and axum-extra depends on
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
# Unreleased
|
||||
|
||||
- None.
|
||||
|
||||
# 0.6.0-rc.3 (8. November, 2022)
|
||||
|
||||
- **changed**: The inner error of a `JsonRejection` is now
|
||||
`serde_path_to_error::Error<serde_json::Error>`. Previously it was
|
||||
`serde_json::Error` ([#1371])
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "axum"
|
||||
version = "0.6.0-rc.2"
|
||||
version = "0.6.0-rc.3"
|
||||
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
|
||||
description = "Web framework that focuses on ergonomics and modularity"
|
||||
edition = "2021"
|
||||
|
@ -31,7 +31,7 @@ __private_docs = ["tower/full", "tower-http/full"]
|
|||
|
||||
[dependencies]
|
||||
async-trait = "0.1.43"
|
||||
axum-core = { path = "../axum-core", version = "=0.3.0-rc.2" }
|
||||
axum-core = { path = "../axum-core", version = "=0.3.0-rc.3" }
|
||||
bitflags = "1.0"
|
||||
bytes = "1.0"
|
||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
|
@ -52,7 +52,7 @@ tower-layer = "0.3"
|
|||
tower-service = "0.3"
|
||||
|
||||
# optional dependencies
|
||||
axum-macros = { path = "../axum-macros", version = "0.3.0-rc.1", optional = true }
|
||||
axum-macros = { path = "../axum-macros", version = "=0.3.0-rc.2", optional = true }
|
||||
base64 = { version = "0.13", optional = true }
|
||||
headers = { version = "0.3.7", optional = true }
|
||||
multer = { version = "2.0.0", optional = true }
|
||||
|
|
Loading…
Reference in New Issue