summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Pedersen <david.pdrsn@gmail.com>2021-07-30 17:20:38 +0200
committerDavid Pedersen <david.pdrsn@gmail.com>2021-07-30 17:20:38 +0200
commit6c1279a415174573779e66a056f20d1b1889b8c2 (patch)
treeec73f9edc360114ec6850e5d358406eb58b40fdb
parent446cfca7530dcee0048ce8c5a8cd092602083458 (diff)
Version 0.1.1axum-v0.1.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
4 files changed, 8 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7f67588f..51844cbe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,10 @@ None.
None.
+# 0.1.1 (30. July, 2021)
+
+- Misc readme fixes.
+
# 0.1.0 (30. July, 2021)
- Initial release.
diff --git a/Cargo.toml b/Cargo.toml
index 41f24b89..89f38452 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.0"
+documentation = "https://docs.rs/axum/0.1.1"
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.0"
+version = "0.1.1"
[features]
default = []
diff --git a/README.md b/README.md
index b1dde3e2..f233c1af 100644
--- a/README.md
+++ b/README.md
@@ -114,7 +114,7 @@ for inclusion in `axum` by you, shall be licensed as MIT, without any
additional terms or conditions.
[examples]: https://github.com/tokio-rs/axum/tree/master/examples
-[docs]: https://docs.rs/axum/0.1.0
+[docs]: https://docs.rs/axum
[`tower`]: https://crates.io/crates/tower
[`hyper`]: https://crates.io/crates/hyper
[`tower-http`]: https://crates.io/crates/tower-http
diff --git a/src/lib.rs b/src/lib.rs
index b584a452..c08158dc 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -550,7 +550,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.0")]
+#![doc(html_root_url = "https://docs.rs/axum/0.1.1")]
#![warn(
clippy::all,
clippy::dbg_macro,