Skip to content

Commit

Permalink
Minor release to update retriable dependency lost when merging
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Jan 23, 2014
1 parent 8ae04bc commit df72a36
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions google-api-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = "google-api-client"
s.version = "0.7.0"
s.version = "0.7.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bob Aman", "Steve Bazyl"]
s.date = "2014-01-22"
s.date = "2014-01-23"
s.description = "The Google API Ruby Client makes it trivial to discover and access supported\nAPIs.\n"
s.email = "[email protected]"
s.extra_rdoc_files = ["README.md"]
Expand All @@ -30,6 +30,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<multi_json>, [">= 1.0.0"])
s.add_runtime_dependency(%q<extlib>, [">= 0.9.15"])
s.add_runtime_dependency(%q<jwt>, [">= 0.1.5"])
s.add_runtime_dependency(%q<retriable>, [">= 1.4"])
s.add_runtime_dependency(%q<launchy>, [">= 2.1.1"])
s.add_development_dependency(%q<rake>, [">= 0.9.0"])
s.add_development_dependency(%q<rspec>, [">= 2.11.0"])
Expand All @@ -42,6 +43,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<multi_json>, [">= 1.0.0"])
s.add_dependency(%q<extlib>, [">= 0.9.15"])
s.add_dependency(%q<jwt>, [">= 0.1.5"])
s.add_dependency(%q<retriable>, [">= 1.4"])
s.add_dependency(%q<launchy>, [">= 2.1.1"])
s.add_dependency(%q<rake>, [">= 0.9.0"])
s.add_dependency(%q<rspec>, [">= 2.11.0"])
Expand All @@ -55,6 +57,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<multi_json>, [">= 1.0.0"])
s.add_dependency(%q<extlib>, [">= 0.9.15"])
s.add_dependency(%q<jwt>, [">= 0.1.5"])
s.add_dependency(%q<retriable>, [">= 1.4"])
s.add_dependency(%q<launchy>, [">= 2.1.1"])
s.add_dependency(%q<rake>, [">= 0.9.0"])
s.add_dependency(%q<rspec>, [">= 2.11.0"])
Expand Down
2 changes: 1 addition & 1 deletion lib/google/api_client/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class APIClient
module VERSION
MAJOR = 0
MINOR = 7
TINY = 0
TINY = 1
PATCH = nil
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion tasks/gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace :gem do
s.add_runtime_dependency('multi_json', '>= 1.0.0')
s.add_runtime_dependency('extlib', '>= 0.9.15')
s.add_runtime_dependency('jwt', '>= 0.1.5')

s.add_runtime_dependency('retriable', '>= 1.4')
# Dependencies used in the CLI
s.add_runtime_dependency('launchy', '>= 2.1.1')

Expand Down

0 comments on commit df72a36

Please sign in to comment.