From 56fc4fc984eb7df880e6290187f6045a3b0dd63e Mon Sep 17 00:00:00 2001 From: deakolt Date: Sun, 14 Dec 2014 18:27:42 -0800 Subject: [PATCH 1/2] version bump (0.3.2) for bugfix in event.rb --- History.txt | 3 +++ lib/bandsintown.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/History.txt b/History.txt index 0770eb4..90334f9 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,6 @@ +== 0.3.2 2014-12-14 +* Bumped version for bugfix in event.rb + == 0.3.1 2010-07-05 * Fixed bug for API methods with a blank method name in the route (events - create and artists - create), "/artists/" => "/artists" diff --git a/lib/bandsintown.rb b/lib/bandsintown.rb index ae0d95e..026a37f 100644 --- a/lib/bandsintown.rb +++ b/lib/bandsintown.rb @@ -14,7 +14,7 @@ require 'bandsintown/venue' module Bandsintown - VERSION = '0.3.1' + VERSION = '0.3.2' class APIError < StandardError; end class << self # All Bandsintown API requests require an app_id parameter for identification. From 12f2cbbd2837e1f706d1fb1db0bbed99cd650e88 Mon Sep 17 00:00:00 2001 From: deakolt Date: Sun, 14 Dec 2014 18:47:35 -0800 Subject: [PATCH 2/2] added gemspec --- bandsintown.gemspec | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 bandsintown.gemspec diff --git a/bandsintown.gemspec b/bandsintown.gemspec new file mode 100644 index 0000000..e2315dc --- /dev/null +++ b/bandsintown.gemspec @@ -0,0 +1,6 @@ +Gem::Specification.new do |s| + s.name = 'bandsintown' + s.version = '0.3.2' + s.date = '2014-12-14' + s.files = ["lib/bandsintown.rb"] +end