summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2021-09-10 18:01:14 +0200
committerGitHub <noreply@github.com>2021-09-10 16:01:14 +0000
commit36665793c3baacfb6a4fbec73e12b6cbb4c8091a (patch)
tree0865c9f929171258a099cc417aaac559b3ca646e
parent6c13b22cd42d84cfe3aee8370eef635a4c4e23a1 (diff)
Version 0.2.4 (#313)axum-v0.2.4
Contains some documentation improvements: - Document using `StreamExt::split` with `WebSocket` ([#291]) - Document adding middleware to multiple groups of routes ([#293]) [#291]: https://github.com/tokio-rs/axum/pull/291 [#293]: https://github.com/tokio-rs/axum/pull/293
-rw-r--r--CHANGELOG.md8
-rw-r--r--Cargo.toml4
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa4274eb..ddb75170 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- None.
+# 0.2.4 (10. September, 2021)
+
+- Document using `StreamExt::split` with `WebSocket` ([#291])
+- Document adding middleware to multiple groups of routes ([#293])
+
+[#291]: https://github.com/tokio-rs/axum/pull/291
+[#293]: https://github.com/tokio-rs/axum/pull/293
+
# 0.2.3 (26. August, 2021)
- **fixed:** Fix accidental breaking change introduced by internal refactor.
diff --git a/Cargo.toml b/Cargo.toml
index 623dcd7a..5253415e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,4 +1,6 @@
[package]
+name = "axum"
+version = "0.2.4"
authors = ["David Pedersen <david.pdrsn@gmail.com>"]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Web framework that focuses on ergonomics and modularity"
@@ -6,10 +8,8 @@ edition = "2018"
homepage = "https://github.com/tokio-rs/axum"
keywords = ["http", "web", "framework"]
license = "MIT"
-name = "axum"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.2.3"
[workspace]
members = ["examples/*"]