about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-02 18:44:55 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-02 18:44:55 -0700
commitafaa8efb31094a831a68b383523f9bac46a244ac (patch)
tree62c52d4b93d33d1e210dad9f900e7033491a9752
parent5fd5bb6aa884ec8f2c62a5edaae6b93ec8275f2e (diff)
downloadclogger-afaa8efb31094a831a68b383523f9bac46a244ac.tar.gz
-rw-r--r--History.txt9
-rw-r--r--lib/clogger.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/History.txt b/History.txt
index 00dd699..a989a0a 100644
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,12 @@
+=== 0.0.5 / 2009-09-02
+
+   The following variables are now exposed: $request_method,
+   $content_length and $content_type.  Additionally, attempts
+   to use $http_content_length or $http_content_type will be
+   remapped to use the non-"$http_"-prefixed variable instead
+   since the "$http_"-variants of those variables is not allowed
+   by Rack.
+
 === 0.0.4 / 2009-09-02
 
     The pure Ruby version now escapes with uppercase A-F
diff --git a/lib/clogger.rb b/lib/clogger.rb
index fb25e1e..7665992 100644
--- a/lib/clogger.rb
+++ b/lib/clogger.rb
@@ -1,6 +1,6 @@
 # -*- encoding: binary -*-
 class Clogger
-  VERSION = '0.0.4'
+  VERSION = '0.0.5'
 
   OP_LITERAL = 0
   OP_REQUEST = 1