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
This commit is contained in:
Tim Emiola 2015-03-25 18:02:32 -07:00
parent 0b1dbb67fe
commit f008d518f0
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
# 0.8.4
* Fixes a file permission issues with the 0.8.3 release
* Fixes warnings when the library is used
# 0.8.3
* Adds support for authorization via Application Default Credentials.
# Adds support for tracking coverage on coveralls.io

View File

@ -28,11 +28,11 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'faraday', '~> 0.9'
s.add_runtime_dependency 'googleauth', '~> 0.3'
s.add_runtime_dependency 'multi_json', '~> 1.10'
s.add_runtime_dependency 'autoparse', "~> 0.3"
s.add_runtime_dependency 'autoparse', '~> 0.3'
s.add_runtime_dependency 'extlib', '~> 0.9'
s.add_runtime_dependency 'launchy', '~> 2.4'
s.add_runtime_dependency 'retriable', '~> 1.4'
s.add_runtime_dependency 'activesupport', '>= 3.2'
s.add_runtime_dependency 'activesupport', '~> 3.2'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'yard', '~> 0.8'

View File

@ -18,7 +18,7 @@ module Google
module VERSION
MAJOR = 0
MINOR = 8
TINY = 3
TINY = 4
PATCH = nil
STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
end