summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2021-08-01 22:13:43 +0200
committerGitHub <noreply@github.com>2021-08-01 22:13:43 +0200
commit55c1a294206bc7e9fce940a81582e875e98eefda (patch)
treee5356b495bbd10f44e77ed55c5cc71a24ecd7f85
parent666d088b266db7bafeee0fac56cfa17ef12b3aaf (diff)
Version 0.1.2 (#80)axum-v0.1.2
-rw-r--r--CHANGELOG.md12
-rw-r--r--Cargo.toml4
-rw-r--r--src/lib.rs2
3 files changed, 11 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d71c9531..eb7c63c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Unreleased
+None.
+
+## Breaking changes
+
+None.
+
+# 0.1.2 (01. August, 2021)
+
- Implement `Stream` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
- Implement `Sink` for `WebSocket` ([#52](https://github.com/tokio-rs/axum/pull/52))
- Implement `Deref` most extractors ([#56](https://github.com/tokio-rs/axum/pull/56))
@@ -20,10 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Mention required dependencies in docs ([#77](https://github.com/tokio-rs/axum/pull/77))
- Fix WebSockets failing on Firefox ([#76](https://github.com/tokio-rs/axum/pull/76))
-## Breaking changes
-
-None.
-
# 0.1.1 (30. July, 2021)
- Misc readme fixes.
diff --git a/Cargo.toml b/Cargo.toml
index 1d5f701b..603b1ab1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
authors = ["David Pedersen <david.pdrsn@gmail.com>"]
categories = ["asynchronous", "network-programming", "web-programming"]
description = "Web framework that focuses on ergonomics and modularity"
-documentation = "https://docs.rs/axum/0.1.1"
+documentation = "https://docs.rs/axum/0.1.2"
edition = "2018"
homepage = "https://github.com/tokio-rs/axum"
keywords = ["http", "web", "framework"]
@@ -10,7 +10,7 @@ license = "MIT"
name = "axum"
readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
-version = "0.1.1"
+version = "0.1.2"
[features]
default = []
diff --git a/src/lib.rs b/src/lib.rs
index 3c97e8cb..318f6c37 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -672,7 +672,7 @@
//! [`Timeout`]: tower::timeout::Timeout
//! [examples]: https://github.com/tokio-rs/axum/tree/main/examples
-#![doc(html_root_url = "https://docs.rs/axum/0.1.1")]
+#![doc(html_root_url = "https://docs.rs/axum/0.1.2")]
#![warn(
clippy::all,
clippy::dbg_macro,