mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-28 00:00:20 +02:00
Bump version of all crates (#1310)
* Bump version of all crates * use the right versions inside the workspace
This commit is contained in:
@@ -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.1 (23. August, 2022)
|
||||||
|
|
||||||
- **breaking:** `FromRequest` has been reworked and `RequestParts` has been
|
- **breaking:** `FromRequest` has been reworked and `RequestParts` has been
|
||||||
removed. See axum's changelog for more details ([#1272])
|
removed. See axum's changelog for more details ([#1272])
|
||||||
- **added:** Added new `FromRequestParts` trait. See axum's changelog for more
|
- **added:** Added new `FromRequestParts` trait. See axum's changelog for more
|
||||||
|
|||||||
@@ -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.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]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
@@ -20,7 +20,7 @@ http-body = "0.4.5"
|
|||||||
mime = "0.3.16"
|
mime = "0.3.16"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = { path = "../axum", version = "0.5" }
|
axum = { path = "../axum", version = "0.6.0-rc.1" }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
hyper = "0.14"
|
hyper = "0.14"
|
||||||
tokio = { version = "1.0", features = ["macros"] }
|
tokio = { version = "1.0", features = ["macros"] }
|
||||||
|
|||||||
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning].
|
|||||||
|
|
||||||
# Unreleased
|
# Unreleased
|
||||||
|
|
||||||
|
- None.
|
||||||
|
|
||||||
|
# 0.4.0-rc.1 (23. August, 2022)
|
||||||
|
|
||||||
- **added:** Add `RouterExt::route_with_tsr` for adding routes with an
|
- **added:** Add `RouterExt::route_with_tsr` for adding routes with an
|
||||||
additional "trailing slash redirect" route ([#1119])
|
additional "trailing slash redirect" route ([#1119])
|
||||||
- **breaking:** `Resource::nest` and `Resource::nest_collection` has been
|
- **breaking:** `Resource::nest` and `Resource::nest_collection` has been
|
||||||
|
|||||||
@@ -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.3.5"
|
version = "0.4.0-rc.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
@@ -34,7 +34,7 @@ spa = ["tower-http/fs"]
|
|||||||
typed-routing = ["dep:axum-macros", "dep:serde", "dep:percent-encoding"]
|
typed-routing = ["dep:axum-macros", "dep:serde", "dep:percent-encoding"]
|
||||||
|
|
||||||
[dependencies]
|
[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"
|
bytes = "1.1.0"
|
||||||
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
futures-util = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
http = "0.2"
|
http = "0.2"
|
||||||
@@ -47,7 +47,7 @@ tower-layer = "0.3"
|
|||||||
tower-service = "0.3"
|
tower-service = "0.3"
|
||||||
|
|
||||||
# optional dependencies
|
# 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 }
|
cookie = { package = "cookie", version = "0.16", features = ["percent-encode"], optional = true }
|
||||||
percent-encoding = { version = "2.1", optional = true }
|
percent-encoding = { version = "2.1", optional = true }
|
||||||
prost = { version = "0.11", 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 }
|
tokio-util = { version = "0.7", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
axum = { path = "../axum", version = "0.6.0-rc.1", features = ["headers"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
hyper = "0.14"
|
hyper = "0.14"
|
||||||
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
|
reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "multipart"] }
|
||||||
|
|||||||
@@ -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.1 (23. August, 2022)
|
||||||
|
|
||||||
- **change:** axum-macro's MSRV is now 1.60 ([#1239])
|
- **change:** axum-macro's MSRV is now 1.60 ([#1239])
|
||||||
- **added:** Support using a different rejection for `#[derive(FromRequest)]`
|
- **added:** Support using a different rejection for `#[derive(FromRequest)]`
|
||||||
with `#[from_request(rejection(MyRejection))]` ([#1256])
|
with `#[from_request(rejection(MyRejection))]` ([#1256])
|
||||||
|
|||||||
@@ -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.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]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
@@ -25,8 +25,8 @@ syn = { version = "1.0", features = [
|
|||||||
] }
|
] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
axum = { path = "../axum", version = "0.6.0-rc.1", features = ["headers"] }
|
||||||
axum-extra = { path = "../axum-extra", version = "0.3", features = ["typed-routing"] }
|
axum-extra = { path = "../axum-extra", version = "0.4.0-rc.1", features = ["typed-routing"] }
|
||||||
rustversion = "1.0"
|
rustversion = "1.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|||||||
@@ -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.1 (23. August, 2022)
|
||||||
|
|
||||||
## Routing
|
## Routing
|
||||||
|
|
||||||
- **breaking:** Nested `Router`s will no longer delegate to the outer `Router`'s
|
- **breaking:** Nested `Router`s will no longer delegate to the outer `Router`'s
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "axum"
|
name = "axum"
|
||||||
version = "0.5.10"
|
version = "0.6.0-rc.1"
|
||||||
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"
|
||||||
@@ -30,7 +30,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.2.6" }
|
axum-core = { path = "../axum-core", version = "0.3.0-rc.1" }
|
||||||
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.2.3", optional = true }
|
axum-macros = { path = "../axum-macros", version = "0.3.0-rc.1", 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 }
|
||||||
|
|||||||
Reference in New Issue
Block a user