Bump version

This commit is contained in:
Steve Bazyl 2016-01-07 16:15:43 -08:00
parent 8c9f0e8b1f
commit 8dcab2ace0
3 changed files with 11 additions and 2 deletions

View File

@ -1,9 +1,18 @@
# 0.9.0.pre5
* Change the default HTTP adapter to HTTPClient due to broken connections with long running uploads with Net::HTTP
* No longer breaks Object#hash behavior, restores compatibility with Padrino
* No longer omit falsey values (0, false, etc) in query parameters
* Updated error messages to include the detailed/human friendly message
* Allow Tempfile as an upload source
* Updated samples for various APIs
# 0.9.0.pre4 # 0.9.0.pre4
* (Breaking change) Updated name method name generation for improved * (Breaking change) Updated name method name generation for improved
consistency, some services may have changed. consistency, some services may have changed.
* Updated generated APIs * Updated generated APIs
* Fix streaming downloads with redirects * Fix streaming downloads with redirects
* No longer swallow exceptions raised in blocks * No longer swallow exceptions raised in blocks
* Preserve query parameters in URLs when using `http()` for generic requests
* Avoid masking errors caused by retries with resumable uploads * Avoid masking errors caused by retries with resumable uploads
* Deprecating the authorization support under Google::APIClient. Equivalent * Deprecating the authorization support under Google::APIClient. Equivalent
functionality is now available in google-auth-library-ruby. These will functionality is now available in google-auth-library-ruby. These will

View File

@ -15,7 +15,7 @@ migrate to the latest version.
Add this line to your application's Gemfile: Add this line to your application's Gemfile:
```ruby ```ruby
gem 'google-api-client', '0.9.pre4' gem 'google-api-client', '0.9.pre5'
``` ```

View File

@ -15,7 +15,7 @@
module Google module Google
module Apis module Apis
# Client library version # Client library version
VERSION = '0.9.pre4' VERSION = '0.9.pre5'
# Current operating system # Current operating system
# @private # @private