diff --git a/.travis.yml b/.travis.yml index 7070824c0..dfa93d40e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -78,7 +78,7 @@ script: after_success: - | if [[ "$TRAVIS_OS_NAME" == "linux" && "$TRAVIS_PULL_REQUEST" = "false" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_RUST_VERSION" == "nightly" ]]; then - cargo doc --features "alpn, tls" --no-deps && + cargo doc --features "alpn, tls, session" --no-deps && echo "" > target/doc/index.html && cargo install mdbook && cd guide && mdbook build -d ../target/doc/guide && cd .. && diff --git a/CHANGES.md b/CHANGES.md index 8ea018081..2f07ca78d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,6 @@ # Changes -## 0.4.6 (2018-03-xx) - -* Add experimental protobuf support +## 0.4.6 (2018-03-09) * Fix client cookie handling diff --git a/Cargo.toml b/Cargo.toml index 2b21ec387..2a6f663af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "0.4.6-dev" +version = "0.4.6" authors = ["Nikolay Kim "] description = "Actix web is a simple, pragmatic, extremely fast, web framework for Rust." readme = "README.md" diff --git a/README.md b/README.md index 77b287ce4..d88c662e7 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Actix web is a simple, pragmatic, extremely fast, web framework for Rust. * Configurable [request routing](https://actix.github.io/actix-web/guide/qs_5.html) * Graceful server shutdown * Multipart streams +* Static assets * SSL support with openssl or native-tls * Middlewares ([Logger](https://actix.github.io/actix-web/guide/qs_10.html#logging), [Session](https://actix.github.io/actix-web/guide/qs_10.html#user-sessions),