1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-23 01:51:11 +00:00

update changes

This commit is contained in:
Nikolay Kim 2018-04-26 08:01:08 -07:00
parent 3eba383cdc
commit c5b9bed478
3 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,10 @@
# Changes # Changes
## 0.6.0 (...)
* Websocket CloseCode Empty/Status is ambiguous #193
## 0.5.6 (2018-04-24) ## 0.5.6 (2018-04-24)
* Make flate2 crate optional #200 * Make flate2 crate optional #200

View file

@ -1,6 +1,6 @@
[package] [package]
name = "actix-web" name = "actix-web"
version = "0.5.6" version = "0.6.0-dev"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
readme = "README.md" readme = "README.md"

View file

@ -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()` * `HttpResponseBuilder::body()`, `.finish()`, `.json()`
methods return `HttpResponse` instead of `Result<HttpResponse>` methods return `HttpResponse` instead of `Result<HttpResponse>`