Minor release
authorSteven Bazyl <sqrrrl@gmail.com>
Sat, 10 Jan 2015 00:05:40 +0000 (16:05 -0800)
committerSteven Bazyl <sqrrrl@gmail.com>
Sat, 10 Jan 2015 00:05:40 +0000 (16:05 -0800)
CHANGELOG.md
lib/google/api_client/version.rb

index 3e7c1172aaa222db5665781846dc38dbf03517d3..b92ba7eae217e904e1e344fe56aa374ea735ce84 100644 (file)
@@ -1,3 +1,6 @@
+# 0.8.2
+* Fixes for file storage and missing cacerts file
+
 # 0.8.1
 * Fix logger in rails
 
@@ -12,7 +15,7 @@
 * 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
 
@@ -62,7 +65,7 @@
 
 # 0.5.0
 
-* Beta candidate, potential incompatible changes with how requests are processed. 
+* Beta candidate, potential incompatible changes with how requests are processed.
     * All requests should be made using execute() or execute!()
     * :api_method in request can no longer be a string
     * Deprecated ResumableUpload.send_* methods.
index 654aeffbf3cdd51837cb736187b655e7f290adc5..228fa1444f760e189e03ae6a7259a8903f6ceecc 100644 (file)
@@ -18,8 +18,8 @@ module Google
     module VERSION
       MAJOR = 0
       MINOR = 8
-      TINY  = 1
-      PATCH = 1
+      TINY  = 2
+      PATCH = nil
       STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
     end
   end