Bump version of all crates (#1310)

* Bump version of all crates

* use the right versions inside the workspace
This commit is contained in:
David Pedersen 2022-08-23 22:57:13 +02:00 committed by GitHub
parent 7705ef6661
commit b315b60bca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 28 additions and 12 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None.
# 0.3.0-rc.1 (23. August, 2022)
- **breaking:** `FromRequest` has been reworked and `RequestParts` has been
removed. See axum's changelog for more details ([#1272])
- **added:** Added new `FromRequestParts` trait. See axum's changelog for more

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-core"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.2.6" # remember to also bump the version that axum depends on
version = "0.3.0-rc.1" # remember to also bump the version that axum depends on
[dependencies]
async-trait = "0.1"
@ -20,7 +20,7 @@ http-body = "0.4.5"
mime = "0.3.16"
[dev-dependencies]
axum = { path = "../axum", version = "0.5" }
axum = { path = "../axum", version = "0.6.0-rc.1" }
futures-util = "0.3"
hyper = "0.14"
tokio = { version = "1.0", features = ["macros"] }

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
# Unreleased
- None.
# 0.4.0-rc.1 (23. August, 2022)
- **added:** Add `RouterExt::route_with_tsr` for adding routes with an
additional "trailing slash redirect" route ([#1119])
- **breaking:** `Resource::nest` and `Resource::nest_collection` has been

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-extra"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.3.5"
version = "0.4.0-rc.1"
[features]
default = []
@ -34,7 +34,7 @@ spa = ["tower-http/fs"]
typed-routing = ["dep:axum-macros", "dep:serde", "dep:percent-encoding"]
[dependencies]
axum = { path = "../axum", version = "0.5", default-features = false }
axum = { path = "../axum", version = "0.6.0-rc.1", default-features = false }
bytes = "1.1.0"
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
http = "0.2"
@ -47,7 +47,7 @@ tower-layer = "0.3"
tower-service = "0.3"
# optional dependencies
axum-macros = { path = "../axum-macros", version = "0.2.2", optional = true }
axum-macros = { path = "../axum-macros", version = "0.3.0-rc.1", optional = true }
cookie = { package = "cookie", version = "0.16", features = ["percent-encode"], optional = true }
percent-encoding = { version = "2.1", optional = true }
prost = { version = "0.11", optional = true }
@ -58,7 +58,7 @@ tokio-stream = { version = "0.1.9", optional = true }
tokio-util = { version = "0.7", optional = true }
[dev-dependencies]
axum = { path = "../axum", version = "0.5", features = ["headers"] }
axum = { path = "../axum", version = "0.6.0-rc.1", features = ["headers"] }
futures = "0.3"
hyper = "0.14"
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None
# 0.3.0-rc.1 (23. August, 2022)
- **change:** axum-macro's MSRV is now 1.60 ([#1239])
- **added:** Support using a different rejection for `#[derive(FromRequest)]`
with `#[from_request(rejection(MyRejection))]` ([#1256])

View file

@ -9,7 +9,7 @@ license = "MIT"
name = "axum-macros"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.2.3" # remember to also bump the version that axum and axum-extra depends on
version = "0.3.0-rc.1" # remember to also bump the version that axum and axum-extra depends on
[lib]
proc-macro = true
@ -25,8 +25,8 @@ syn = { version = "1.0", features = [
] }
[dev-dependencies]
axum = { path = "../axum", version = "0.5", features = ["headers"] }
axum-extra = { path = "../axum-extra", version = "0.3", features = ["typed-routing"] }
axum = { path = "../axum", version = "0.6.0-rc.1", features = ["headers"] }
axum-extra = { path = "../axum-extra", version = "0.4.0-rc.1", features = ["typed-routing"] }
rustversion = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
- None
# 0.6.0-rc.1 (23. August, 2022)
## Routing
- **breaking:** Nested `Router`s will no longer delegate to the outer `Router`'s

View file

@ -1,6 +1,6 @@
[package]
name = "axum"
version = "0.5.10"
version = "0.6.0-rc.1"
categories = ["asynchronous", "network-programming", "web-programming::http-server"]
description = "Web framework that focuses on ergonomics and modularity"
edition = "2021"
@ -30,7 +30,7 @@ __private_docs = ["tower/full", "tower-http/full"]
[dependencies]
async-trait = "0.1.43"
axum-core = { path = "../axum-core", version = "0.2.6" }
axum-core = { path = "../axum-core", version = "0.3.0-rc.1" }
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.2.3", optional = true }
axum-macros = { path = "../axum-macros", version = "0.3.0-rc.1", optional = true }
base64 = { version = "0.13", optional = true }
headers = { version = "0.3.7", optional = true }
multer = { version = "2.0.0", optional = true }