about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-11-30 14:16:32 -0800
committerEric Wong <normalperson@yhbt.net>2010-11-30 14:16:32 -0800
commit9d0816ecf953a5a7a8b9c03714753603928c5577 (patch)
tree62558f36d1757ddfdedac240bf434a9b658ef464
parent13ccab804e69a7f81358b73279d92049fc8136b4 (diff)
downloadkcar-9d0816ecf953a5a7a8b9c03714753603928c5577.tar.gz
* header/body-less pipelined HTTP/1.1 responses handled properly
  Some HTTP servers do not send any response headers
  for errors, only the HTTP status line.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/kcar.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 8e53f75..fa27d72 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.1.1.GIT
+DEF_VER=v0.1.2.GIT
 
 LF='
 '
diff --git a/lib/kcar.rb b/lib/kcar.rb
index 8ea7581..055e8da 100644
--- a/lib/kcar.rb
+++ b/lib/kcar.rb
@@ -1,8 +1,8 @@
 # -*- encoding: binary -*-
 module Kcar
 
-  # current version, currently 0.1.1
-  VERSION = '0.1.1'
+  # current version, currently 0.1.2
+  VERSION = '0.1.2'
 
   autoload :Response, 'kcar/response'
 end