From 3c3289073c5a4ec4f99d7a027071ecaec5f4855d Mon Sep 17 00:00:00 2001 From: Hiroshi Nakamura Date: Thu, 8 Dec 2011 06:26:53 +0900 Subject: [PATCH] Version bump to 2.2.4 --- README.txt | 14 ++++++++++++++ httpclient.gemspec | 4 ++-- lib/httpclient/version.rb | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.txt b/README.txt index 01ab2c07..ae778672 100644 --- a/README.txt +++ b/README.txt @@ -95,6 +95,20 @@ Thanks in advance. == Changes += Changes in 2.2.4 = + + Dec 08, 2011 - version 2.2.4 + + * Bug fixes + + * Do not recycle buffer String object for yielding. When the response is + not chunked and the size of the response > 16KB, API with block style + yields recycled String object for each yields. + + * Set VERSION string in User-Agent header. $Id$ didn't work long time... + + Bugs are reported by Seamus Abshere. Thanks! + = Changes in 2.2.3 = Oct 28, 2011 - version 2.2.3 diff --git a/httpclient.gemspec b/httpclient.gemspec index 9b26ead6..9fbf3011 100644 --- a/httpclient.gemspec +++ b/httpclient.gemspec @@ -1,8 +1,8 @@ require 'rubygems' Gem::Specification.new { |s| s.name = "httpclient" - s.version = "2.2.3" - s.date = "2011-10-28" + s.version = "2.2.4" + s.date = "2011-12-08" s.author = "Hiroshi Nakamura" s.email = "nahi@ruby-lang.org" s.homepage = "http://github.com/nahi/httpclient" diff --git a/lib/httpclient/version.rb b/lib/httpclient/version.rb index 62a52805..45338872 100644 --- a/lib/httpclient/version.rb +++ b/lib/httpclient/version.rb @@ -1,3 +1,3 @@ class HTTPClient - VERSION = '2.2.3' + VERSION = '2.2.4' end