From f8615087893863a35f3e835068dd833ce5c5af5b Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 13 Sep 2020 03:24:44 +0100 Subject: [PATCH] prepare web release 3.0.1 (#1676) --- CHANGES.md | 6 ++++++ Cargo.toml | 4 ++-- src/lib.rs | 8 +++++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index bc5f7136..aadf627b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,15 @@ # Changes ## Unreleased - 2020-xx-xx + + +## 3.0.1 - 2020-09-13 ### Changed * `middleware::normalize::TrailingSlash` enum is now accessible. [#1673] +[#1673]: https://github.com/actix/actix-web/pull/1673 + + ## 3.0.0 - 2020-09-11 * No significant changes from `3.0.0-beta.4`. diff --git a/Cargo.toml b/Cargo.toml index ce33097b..b2cffbc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "actix-web" -version = "3.0.0" +version = "3.0.1" authors = ["Nikolay Kim "] -description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." +description = "Actix web is a powerful, pragmatic, and extremely fast web framework for Rust." readme = "README.md" keywords = ["actix", "http", "web", "framework", "async"] homepage = "https://actix.rs" diff --git a/src/lib.rs b/src/lib.rs index 0eced5b4..327cba95 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,3 @@ -#![deny(rust_2018_idioms)] -#![allow(clippy::needless_doctest_main, clippy::type_complexity)] - //! Actix web is a powerful, pragmatic, and extremely fast web framework for Rust. //! //! ## Example @@ -68,6 +65,11 @@ //! * `rustls` - HTTPS support via `rustls` crate, supports `HTTP/2` //! * `secure-cookies` - secure cookies support +#![deny(rust_2018_idioms)] +#![allow(clippy::needless_doctest_main, clippy::type_complexity)] +#![doc(html_logo_url = "https://actix.rs/img/logo.png")] +#![doc(html_favicon_url = "https://actix.rs/favicon.ico")] + mod app; mod app_service; mod config;