1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 02:09:36 +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
## 0.6.0 (...)
* Websocket CloseCode Empty/Status is ambiguous #193
## 0.5.6 (2018-04-24)
* Make flate2 crate optional #200

View file

@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "0.5.6"
version = "0.6.0-dev"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
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()`
methods return `HttpResponse` instead of `Result<HttpResponse>`