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 "] 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,