This commit is contained in:
Sean McArthur
2015-08-27 15:50:52 -07:00
parent 0af7abf62e
commit 5e0b952a37
2 changed files with 23 additions and 1 deletions

View File

@@ -1,3 +1,25 @@
### v0.6.11 (2015-08-27)
#### Bug Fixes
* **client:** fix panics when some errors occured inside HttpMessage ([ef15257b](https://github.com/hyperium/hyper/commit/ef15257b733d40bc3a7c598f61918f91385585f9))
* **headers:** case insensitive values for Connection header ([341f8eae](https://github.com/hyperium/hyper/commit/341f8eae6eb33e2242be09541807cdad9afc732e), closes [#635](https://github.com/hyperium/hyper/issues/635))
#### Breaking Changes
* This changes the signature of HttpWriter.end(),
returning a `EndError` that is similar to std::io::IntoInnerError,
allowing HttpMessage to retrieve the broken connections and not panic.
The breaking change isn't exposed in any usage of the `Client` API,
but for anyone using `HttpWriter` directly, since this was technically
a public method, that change is breaking.
([ef15257b](https://github.com/hyperium/hyper/commit/ef15257b733d40bc3a7c598f61918f91385585f9))
### v0.6.10 (2015-08-19) ### v0.6.10 (2015-08-19)

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "hyper" name = "hyper"
version = "0.6.10" version = "0.6.11"
description = "A modern HTTP library." description = "A modern HTTP library."
readme = "README.md" readme = "README.md"
documentation = "http://hyperium.github.io/hyper/hyper/index.html" documentation = "http://hyperium.github.io/hyper/hyper/index.html"