about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/kcar.rb6
2 files changed, 5 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index fa27d72..e36125a 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.1.2.GIT
+DEF_VER=v0.2.0.GIT
 
 LF='
 '
diff --git a/lib/kcar.rb b/lib/kcar.rb
index 055e8da..1fe0554 100644
--- a/lib/kcar.rb
+++ b/lib/kcar.rb
@@ -1,8 +1,10 @@
 # -*- encoding: binary -*-
 module Kcar
 
-  # current version, currently 0.1.2
-  VERSION = '0.1.2'
+  # current version of Kcar, currently 0.2.0
+  # This constant is deprecated and will be removed in the next
+  # release.  Use +respond_to?+ or +defined?+ instead to test for features.
+  VERSION = "0.2.0"
 
   autoload :Response, 'kcar/response'
 end