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:
parent
3eba383cdc
commit
c5b9bed478
3 changed files with 13 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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>`
|
Loading…
Reference in a new issue