Skip to content

Commit bdb4d0e

Browse files
committed
v0.1.13
1 parent e8529b3 commit bdb4d0e

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
### v0.1.13 (2015-02-17)
2+
3+
4+
#### Bug Fixes
5+
6+
* **server:** Drain requests on drop. ([3d0f423e](https://github.com/hyperium/hyper/commit/3d0f423eb26c4f14aaf9f8a909b307f661a3c5d6), closes [#197](https://github.com/hyperium/hyper/issues/197), [#309](https://github.com/hyperium/hyper/issues/309))
7+
8+
9+
#### Features
10+
11+
* **header:** Support arbitary status codes ([73978531](https://github.com/hyperium/hyper/commit/7397853148b8221c0eb8315ae2e5f195ad2e642c))
12+
* **headers:**
13+
* Implement PartialOrd for QualityItem ([2859d7ef](https://github.com/hyperium/hyper/commit/2859d7ef4ecadc3927fa46292ebbb225da597690), closes [#314](https://github.com/hyperium/hyper/issues/314))
14+
* add AcceptLanguage header ([20a585e3](https://github.com/hyperium/hyper/commit/20a585e30bbb060a91839de7e95fd75a95d03d93))
15+
* add IfMatch header ([5df06d44](https://github.com/hyperium/hyper/commit/5df06d4465fae01ef08b926f1f3be9f32a0f5c80))
16+
* **server:** Rewrite the accept loop into a custom thread pool. ([3528fb9b](https://github.com/hyperium/hyper/commit/3528fb9b015a0959268452d5b42d5544c7b98a6a))
17+
18+
19+
#### Breaking Changes
20+
21+
* This removes unregistered status codes from the enum. Use
22+
`FromPrimitive` methods to create them now. StatusCode and StatusClass can no
23+
longer be casted to `u16`, use `ToPrimitive` methods now.
24+
For example `status.to_u16().unwrap()` to get the status code number.
25+
26+
([73978531](https://github.com/hyperium/hyper/commit/7397853148b8221c0eb8315ae2e5f195ad2e642c))
27+
28+
129
### v0.1.12 (2015-02-13)
230

331

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "hyper"
4-
version = "0.1.12"
4+
version = "0.1.13"
55
description = "A modern HTTP library."
66
readme = "README.md"
77
documentation = "http://hyperium.github.io/hyper/hyper/index.html"

0 commit comments

Comments
 (0)