From 2b41a7144f736afc953161988773db25d6b56f8f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 20 Dec 2015 12:09:32 -0800 Subject: [PATCH] Bump version to 1.0.0.pre5 and update CHANGES.md --- CHANGES.md | 6 +++++- lib/http/version.rb | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d413f375..83d2801d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -35,9 +35,13 @@ ([@tarcieri]) * [#278](https://github.com/httprb/http/pull/278) - Use an options hash for HTTP::Request's initializer API. + Use an options hash for HTTP::Request initializer API. ([@ixti]) +* [#279](https://github.com/httprb/http/pull/279) + Send headers and body in one write if possible. + This avoids a pathological case in Nagle's algorithm. + ([@tarcieri]) ## 0.9.8 (2015-09-29) diff --git a/lib/http/version.rb b/lib/http/version.rb index 57f51363..b8b8e56f 100644 --- a/lib/http/version.rb +++ b/lib/http/version.rb @@ -1,3 +1,3 @@ module HTTP - VERSION = "1.0.0.pre4".freeze + VERSION = "1.0.0.pre5".freeze end