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
8 changed files with 28 additions and 12 deletions
+4
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
+2 -2
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"] }