From d2a638c0fb8ba5d52f9cb9cc5f9f71555ad46bf8 Mon Sep 17 00:00:00 2001 From: Sean Geoghegan Date: Thu, 26 Feb 2009 10:05:49 +1030 Subject: [PATCH] Bump to version 1.1.0 --- History.txt | 4 ++++ auth-hmac.gemspec | 16 ++++++++-------- config/hoe.rb | 5 +++-- lib/auth-hmac/version.rb | 4 ++-- 4 files changed, 17 insertions(+), 12 deletions(-) diff --git a/History.txt b/History.txt index d34176b..5405177 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +== 1.1.0 2009-02-26 + +* Added support for custom request signatures and service ids. (ascarter) + == 1.0.1 2008-08-22 * Fixed nil pointer exception when with_auth called with nil creds. diff --git a/auth-hmac.gemspec b/auth-hmac.gemspec index cc08b3b..bd9403c 100644 --- a/auth-hmac.gemspec +++ b/auth-hmac.gemspec @@ -2,13 +2,13 @@ Gem::Specification.new do |s| s.name = %q{auth-hmac} - s.version = "1.0.1" + s.version = "1.1.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Sean Geoghegan"] - s.date = %q{2009-01-27} + s.authors = ["Sean Geoghegan", "ascarter"] + s.date = %q{2009-02-26} s.description = %q{A gem providing HMAC based authentication for HTTP} - s.email = ["seangeo@gmail.com"] + s.email = %q{seangeo@gmail.com} s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt"] s.files = ["History.txt", "License.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "lib/auth-hmac.rb", "lib/auth-hmac/version.rb", "script/console", "script/destroy", "script/generate", "setup.rb", "spec/auth-hmac_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/rspec.rake", "tasks/website.rake"] s.has_rdoc = true @@ -21,7 +21,7 @@ You can also delete it if you don't want it. } - s.rdoc_options = ["--main", "README.rdoc"] + s.rdoc_options = ["--main", "README.txt"] s.require_paths = ["lib"] s.rubyforge_project = %q{auth-hmac} s.rubygems_version = %q{1.3.1} @@ -32,11 +32,11 @@ You can also delete it if you don't want it. s.specification_version = 2 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then - s.add_development_dependency(%q, [">= 1.8.0"]) + s.add_development_dependency(%q, [">= 1.8.2"]) else - s.add_dependency(%q, [">= 1.8.0"]) + s.add_dependency(%q, [">= 1.8.2"]) end else - s.add_dependency(%q, [">= 1.8.0"]) + s.add_dependency(%q, [">= 1.8.2"]) end end diff --git a/config/hoe.rb b/config/hoe.rb index 6ce072d..966f6d8 100644 --- a/config/hoe.rb +++ b/config/hoe.rb @@ -1,6 +1,6 @@ require 'auth-hmac/version' -AUTHOR = 'Sean Geoghegan' # can also be an array of Authors +AUTHOR = ['Sean Geoghegan', 'ascarter'] # can also be an array of Authors EMAIL = "seangeo@gmail.com" DESCRIPTION = "A gem providing HMAC based authentication for HTTP" GEM_NAME = 'auth-hmac' # what ppl will type to install your gem @@ -51,7 +51,8 @@ def extra_deps # Generate all the Rake tasks # Run 'rake -T' to see list of generated tasks (from gem root directory) $hoe = Hoe.new(GEM_NAME, VERS) do |p| - p.developer(AUTHOR, EMAIL) + p.author = AUTHOR + p.email = EMAIL p.description = DESCRIPTION p.summary = DESCRIPTION p.url = HOMEPATH diff --git a/lib/auth-hmac/version.rb b/lib/auth-hmac/version.rb index 7f57dd9..938d9fd 100644 --- a/lib/auth-hmac/version.rb +++ b/lib/auth-hmac/version.rb @@ -1,8 +1,8 @@ class AuthHMAC module VERSION #:nodoc: MAJOR = 1 - MINOR = 0 - TINY = 1 + MINOR = 1 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end