Minor release
[arvados.git] / lib / google / api_client / version.rb
index 6b93ae8be3c8ecb5824e9018720f7e6935d19228..228fa1444f760e189e03ae6a7259a8903f6ceecc 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# Used to prevent the class/module from being loaded more than once
-unless defined? Google::APIClient::VERSION
-  module Google #:nodoc:
-    class APIClient #:nodoc:
-      module VERSION #:nodoc:
-        MAJOR = 0
-        MINOR = 1
-        TINY  = 0
 
-        STRING = [MAJOR, MINOR, TINY].join('.')
-      end
+module Google
+  class APIClient
+    module VERSION
+      MAJOR = 0
+      MINOR = 8
+      TINY  = 2
+      PATCH = nil
+      STRING = [MAJOR, MINOR, TINY, PATCH].compact.join('.')
     end
   end
 end