From 8dcab2ace0f543adfd1f0cdbc50a12477f3a217b Mon Sep 17 00:00:00 2001 From: Steve Bazyl Date: Thu, 7 Jan 2016 16:15:43 -0800 Subject: [PATCH] Bump version --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- lib/google/apis/version.rb | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c57631eaf..e050e9440 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 * (Breaking change) Updated name method name generation for improved consistency, some services may have changed. * Updated generated APIs * Fix streaming downloads with redirects * 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 * Deprecating the authorization support under Google::APIClient. Equivalent functionality is now available in google-auth-library-ruby. These will diff --git a/README.md b/README.md index 0ee3694c0..b6a093acc 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ migrate to the latest version. Add this line to your application's Gemfile: ```ruby -gem 'google-api-client', '0.9.pre4' +gem 'google-api-client', '0.9.pre5' ``` diff --git a/lib/google/apis/version.rb b/lib/google/apis/version.rb index f95af6555..3bc05cb50 100644 --- a/lib/google/apis/version.rb +++ b/lib/google/apis/version.rb @@ -15,7 +15,7 @@ module Google module Apis # Client library version - VERSION = '0.9.pre4' + VERSION = '0.9.pre5' # Current operating system # @private