From c5b9bed478d9c033006cad058e8c22d8a1fc4a7d Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 26 Apr 2018 08:01:08 -0700 Subject: [PATCH] update changes --- CHANGES.md | 5 +++++ Cargo.toml | 2 +- MIGRATION-0.4-0.5.md => MIGRATION.md | 8 +++++++- 3 files changed, 13 insertions(+), 2 deletions(-) rename MIGRATION-0.4-0.5.md => MIGRATION.md (85%) diff --git a/CHANGES.md b/CHANGES.md index 6d4be932..fb58d0ae 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## 0.6.0 (...) + +* Websocket CloseCode Empty/Status is ambiguous #193 + + ## 0.5.6 (2018-04-24) * Make flate2 crate optional #200 diff --git a/Cargo.toml b/Cargo.toml index 425ec701..e8f70fd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "0.5.6" +version = "0.6.0-dev" authors = ["Nikolay Kim "] description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." readme = "README.md" diff --git a/MIGRATION-0.4-0.5.md b/MIGRATION.md similarity index 85% rename from MIGRATION-0.4-0.5.md rename to MIGRATION.md index d618e054..63c4989e 100644 --- a/MIGRATION-0.4-0.5.md +++ b/MIGRATION.md @@ -1,4 +1,10 @@ -# Migration from 0.4 to 0.5 +## Migration from 0.5 to 0.6 + +* `ws::Message::Close` now includes optional close reason. + `ws::CloseCode::Status` and `ws::CloseCode::Empty` have been removed. + + +## Migration from 0.4 to 0.5 * `HttpResponseBuilder::body()`, `.finish()`, `.json()` methods return `HttpResponse` instead of `Result`