From 23c5ae450776e8ac4370cf7e9d350bb44a7152fb Mon Sep 17 00:00:00 2001 From: John Nunemaker Date: Sat, 31 Jan 2009 00:35:46 -0500 Subject: [PATCH] updated history and bumped version to 0.3 --- History | 4 ++++ lib/httparty/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/History b/History index d8ef3f6..ef9bb0b 100644 --- a/History +++ b/History @@ -1,3 +1,7 @@ +== 0.3.0 2009-01-31 +* 1 major enhancmenet + * JSON gem no longer a requirement. It was conflicting with rails json stuff so I just stole ActiveSupport's json decoding and bundled it with HTTParty. + == 0.2.10 2009-01-29 * 1 minor enhancement * Made encoding on query parameters treat everything except URI::PATTERN::UNRESERVED as UNSAFE to force encoding of '+' character (Julian Russell) diff --git a/lib/httparty/version.rb b/lib/httparty/version.rb index 3f04d53..86fcb89 100644 --- a/lib/httparty/version.rb +++ b/lib/httparty/version.rb @@ -1,3 +1,3 @@ module HTTParty #:nodoc: - Version = '0.2.10' + Version = '0.3.0' end