summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2022-08-23 22:57:13 +0200
committerGitHub <noreply@github.com>2022-08-23 22:57:13 +0200
commitb315b60bca6416d6bf13656e44ea0f49ac0bd6f7 (patch)
tree02fc588b85a1957e8f46c8c7949ac7bb23926315
parent7705ef666131a11ae77ed8998ea9bb78bfb2f62b (diff)
* Bump version of all crates * use the right versions inside the workspace
-rw-r--r--axum-core/CHANGELOG.md4
-rw-r--r--axum-core/Cargo.toml4
-rw-r--r--axum-extra/CHANGELOG.md4
-rw-r--r--axum-extra/Cargo.toml8
-rw-r--r--axum-macros/CHANGELOG.md4
-rw-r--r--axum-macros/Cargo.toml6
-rw-r--r--axum/CHANGELOG.md4
-rw-r--r--axum/Cargo.toml6
8 files changed, 28 insertions, 12 deletions
diff --git a/axum-core/CHANGELOG.md b/axum-core/CHANGELOG.md
index 7fe07dcf..ccc1f62a 100644
--- a/axum-core/CHANGELOG.md
+++ b/axum-core/CHANGELOG.md
@@ -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
diff --git a/axum-core/Cargo.toml b/axum-core/Cargo.toml
index c97b5a4c..1868a83c 100644
--- a/axum-core/Cargo.toml
+++ b/axum-core/Cargo.toml
@@ -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"] }
diff --git a/axum-extra/CHANGELOG.md b/axum-extra/CHANGELOG.md
index 9439bdab..42205113 100644
--- a/axum-extra/CHANGELOG.md
+++ b/axum-extra/CHANGELOG.md
@@ -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
diff --git a/axum-extra/Cargo.toml b/axum-extra/Cargo.toml
index 50edeb42..57aac260 100644
--- a/axum-extra/Cargo.toml
+++ b/axum-extra/Cargo.toml
@@ -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"] }
diff --git a/axum-macros/CHANGELOG.md b/axum-macros/CHANGELOG.md
index d9112308..47fa8b1e 100644
--- a/axum-macros/CHANGELOG.md
+++ b/axum-macros/CHANGELOG.md
@@ -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])
diff --git a/axum-macros/Cargo.toml b/axum-macros/Cargo.toml
index 89d84c64..85d3ccd0 100644
--- a/axum-macros/Cargo.toml
+++ b/axum-macros/Cargo.toml
@@ -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"
diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md
index 96f783d1..d06590f6 100644
--- a/axum/CHANGELOG.md
+++ b/axum/CHANGELOG.md
@@ -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
diff --git a/axum/Cargo.toml b/axum/Cargo.toml
index d832179c..de4b2f3e 100644
--- a/axum/Cargo.toml
+++ b/axum/Cargo.toml
@@ -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 }