From 82dd6159dbdd0869c02d30e500b4ffcaccd28aa4 Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Sun, 30 Nov 2008 23:59:28 -0500 Subject: [PATCH] Prepped for 0.1.7 release. --- History.txt | 4 ++++ httparty.gemspec | 4 ++-- lib/httparty/version.rb | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index 87a1dac..a5d2a82 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== 0.1.7 2008-11-30 +* 1 major enhancement + * fixed multiple class definitions overriding each others options + == 0.1.6 2008-11-26 * 1 major enhancement * now passing :query to set_form_data if post request to avoid content length errors diff --git a/httparty.gemspec b/httparty.gemspec index fdffba7..31a0e9a 100644 --- a/httparty.gemspec +++ b/httparty.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{httparty} - s.version = "0.1.6" + s.version = "0.1.7" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["John Nunemaker"] - s.date = %q{2008-11-26} + s.date = %q{2008-11-30} s.description = %q{Makes http fun! Also, makes consuming restful web services dead easy.} s.email = ["nunemaker@gmail.com"] s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt"] diff --git a/lib/httparty/version.rb b/lib/httparty/version.rb index 77f03c3..8f45602 100644 --- a/lib/httparty/version.rb +++ b/lib/httparty/version.rb @@ -2,7 +2,7 @@ module HTTParty module VERSION #:nodoc: MAJOR = 0 MINOR = 1 - TINY = 6 + TINY = 7 STRING = [MAJOR, MINOR, TINY].join('.') end