about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-02-24 13:28:28 -0800
committerEric Wong <normalperson@yhbt.net>2011-02-24 13:28:28 -0800
commitd92f8ceeb5ea8b5610d7125f8b656231b44fd3ed (patch)
tree37a173ecc2aae827924771cbea1a909c7a3140d8
parentee95d5f2585e8e110f8533681e9400b238104406 (diff)
downloadkcar-d92f8ceeb5ea8b5610d7125f8b656231b44fd3ed.tar.gz
Internal cleanups and micro-optimizations.  We are fully-supported
under Ruby 1.9.3dev and Rubinius 1.2.2
-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