Bump version
authorSteven Bazyl <sqrrrl@gmail.com>
Thu, 18 Dec 2014 17:23:54 +0000 (09:23 -0800)
committerSteven Bazyl <sqrrrl@gmail.com>
Thu, 18 Dec 2014 17:23:54 +0000 (09:23 -0800)
CHANGELOG.md
lib/google/api_client/version.rb

index 0dba585e4bd4b4b6e38e5722e3876471a3c97210..3e7c1172aaa222db5665781846dc38dbf03517d3 100644 (file)
@@ -1,3 +1,6 @@
+# 0.8.1
+* Fix logger in rails
+
 # 0.8.0
 * Refactored credential storage, added support for redis
 * Update gem depdendencies
@@ -6,15 +9,16 @@
 * 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
+* Drop 1.8.x support
+* This will be the last release with 1.9.x support
  
 # 0.7.1
 * Minor fix to update gem dependencies
 
 # 0.7.0
 * Remove CLI
-* SUpport for automatic retires & backoff. Off by default, enable by setting `retries` on `APIClient`
+* Support for automatic retires & backoff. Off by default, enable by setting `retries` on `APIClient`
 * Experimental new interface (see `Google::APIClient::Service`)
 * Fix warnings when using Faraday separately
 * Support Google Compute Engine service accounts
index c8b7196c99cf62a4b29737c4b2cf3972f6244fe6..8138956bffd0345765a435671449ec8af10729b2 100644 (file)
@@ -18,7 +18,7 @@ module Google
     module VERSION
       MAJOR = 0
       MINOR = 8
-      TINY  = 0
+      TINY  = 1
       PATCH = nil
       STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
     end