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:
David Pedersen 2022-11-09 09:01:47 +01:00 committed by GitHub
parent 9c804d506e
commit e39d053d2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 22 additions and 6 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased # Unreleased
- None.
# 0.3.0-rc.3 (8. November, 2022)
- **added:** Add `DefaultBodyLimit::max` for changing the default body limit ([#1397]) - **added:** Add `DefaultBodyLimit::max` for changing the default body limit ([#1397])
- **added:** Add `Error::into_inner` for converting `Error` to `BoxError` without allocating ([#1476]) - **added:** Add `Error::into_inner` for converting `Error` to `BoxError` without allocating ([#1476])
- **breaking:** `AppendHeaders` now works on any `impl IntoIterator` ([#1495]) - **breaking:** `AppendHeaders` now works on any `impl IntoIterator` ([#1495])

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-core" name = "axum-core"
readme = "README.md" readme = "README.md"
repository = "https://github.com/tokio-rs/axum" 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] [dependencies]
async-trait = "0.1" async-trait = "0.1"

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
# Unreleased # Unreleased
- None.
# 0.4.0-rc.2 (8. November, 2022)
- **breaking:** `Form` has a new rejection type ([#1496]) - **breaking:** `Form` has a new rejection type ([#1496])
- **breaking:** `Query` has a new rejection type ([#1496]) - **breaking:** `Query` has a new rejection type ([#1496])

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra" name = "axum-extra"
readme = "README.md" readme = "README.md"
repository = "https://github.com/tokio-rs/axum" repository = "https://github.com/tokio-rs/axum"
version = "0.4.0-rc.1" version = "0.4.0-rc.2"
[features] [features]
default = [] default = []

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased # Unreleased
- None.
# 0.3.0-rc.2 (8. November, 2022)
- **added:** Add `#[derive(FromRef)]` ([#1430]) - **added:** Add `#[derive(FromRef)]` ([#1430])
[#1430]: https://github.com/tokio-rs/axum/pull/1430 [#1430]: https://github.com/tokio-rs/axum/pull/1430

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-macros" name = "axum-macros"
readme = "README.md" readme = "README.md"
repository = "https://github.com/tokio-rs/axum" 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] [lib]
proc-macro = true proc-macro = true

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased # Unreleased
- None.
# 0.6.0-rc.3 (8. November, 2022)
- **changed**: The inner error of a `JsonRejection` is now - **changed**: The inner error of a `JsonRejection` is now
`serde_path_to_error::Error<serde_json::Error>`. Previously it was `serde_path_to_error::Error<serde_json::Error>`. Previously it was
`serde_json::Error` ([#1371]) `serde_json::Error` ([#1371])

View file

@ -1,6 +1,6 @@
[package] [package]
name = "axum" name = "axum"
version = "0.6.0-rc.2" version = "0.6.0-rc.3"
categories = ["asynchronous", "network-programming", "web-programming::http-server"] categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity" description = "Web framework that focuses on ergonomics and modularity"
edition = "2021" edition = "2021"
@ -31,7 +31,7 @@ __private_docs = ["tower/full", "tower-http/full"]
[dependencies] [dependencies]
async-trait = "0.1.43" 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" bitflags = "1.0"
bytes = "1.0" bytes = "1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] } futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
@ -52,7 +52,7 @@ tower-layer = "0.3"
tower-service = "0.3" tower-service = "0.3"
# optional dependencies # 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 } base64 = { version = "0.13", optional = true }
headers = { version = "0.3.7", optional = true } headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true } multer = { version = "2.0.0", optional = true }