Skip to content

Commit f008d51

Browse files
author
Tim Emiola
committed
Release 0.8.4
- minor updates from the 0.8.3 release to fix file permissions in the released gem. - fixes a warning when using the gem
1 parent 0b1dbb6 commit f008d51

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.8.4
2+
* Fixes a file permission issues with the 0.8.3 release
3+
* Fixes warnings when the library is used
4+
15
# 0.8.3
26
* Adds support for authorization via Application Default Credentials.
37
# Adds support for tracking coverage on coveralls.io

google-api-client.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ Gem::Specification.new do |s|
2828
s.add_runtime_dependency 'faraday', '~> 0.9'
2929
s.add_runtime_dependency 'googleauth', '~> 0.3'
3030
s.add_runtime_dependency 'multi_json', '~> 1.10'
31-
s.add_runtime_dependency 'autoparse', "~> 0.3"
31+
s.add_runtime_dependency 'autoparse', '~> 0.3'
3232
s.add_runtime_dependency 'extlib', '~> 0.9'
3333
s.add_runtime_dependency 'launchy', '~> 2.4'
3434
s.add_runtime_dependency 'retriable', '~> 1.4'
35-
s.add_runtime_dependency 'activesupport', '>= 3.2'
35+
s.add_runtime_dependency 'activesupport', '~> 3.2'
3636

3737
s.add_development_dependency 'rake', '~> 10.0'
3838
s.add_development_dependency 'yard', '~> 0.8'

lib/google/api_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class APIClient
1818
module VERSION
1919
MAJOR = 0
2020
MINOR = 8
21-
TINY = 3
21+
TINY = 4
2222
PATCH = nil
2323
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
2424
end

0 commit comments

Comments
 (0)