1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00

Prepped for 0.1.7 release.

This commit is contained in:
John Nunemaker 2008-11-30 23:59:28 -05:00
parent c531652d81
commit 82dd6159db
3 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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"]

View file

@ -2,7 +2,7 @@ module HTTParty
module VERSION #:nodoc:
MAJOR = 0
MINOR = 1
TINY = 6
TINY = 7
STRING = [MAJOR, MINOR, TINY].join('.')
end