Update changelog & bump version
authorSteven Bazyl <sqrrrl@gmail.com>
Wed, 17 Dec 2014 20:59:54 +0000 (12:59 -0800)
committerSteven Bazyl <sqrrrl@gmail.com>
Wed, 17 Dec 2014 20:59:54 +0000 (12:59 -0800)
CHANGELOG.md
lib/google/api_client/version.rb

index 1c22d14eccd75f8b87847c027ec467dc5ca62f2b..0dba585e4bd4b4b6e38e5722e3876471a3c97210 100644 (file)
@@ -1,3 +1,14 @@
+# 0.8.0
+* Refactored credential storage, added support for redis
+* Update gem depdendencies
+* Fixed retry logic to allow for auth retries independent of the overall number of retries
+* Added `:force_encoding` option to set body content encoding based on the Content-Type header
+* Batch requests with the service interface now inherit the service's connection
+* `register_discover_document` now returns the API instance
+* Added `:proxy` option to set Faraday's HTTP proxy setting
+* Drop 1.8.x support
+* Added `:faraday_options` option to allow passthrough settings to Faraday connection
 # 0.7.1
 * Minor fix to update gem dependencies
 
index ee12fd33b04e3e2740632a8bba66004dca4e7aea..c8b7196c99cf62a4b29737c4b2cf3972f6244fe6 100644 (file)
@@ -17,8 +17,8 @@ module Google
   class APIClient
     module VERSION
       MAJOR = 0
-      MINOR = 7
-      TINY  = 1
+      MINOR = 8
+      TINY  = 0
       PATCH = nil
       STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
     end