about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-02-13 01:47:12 -0800
committerEric Wong <normalperson@yhbt.net>2010-02-13 01:47:12 -0800
commit724c1f6a3b42a020199554c809a46ddc4b404659 (patch)
treead496adcb0bde4ce0ac74858dd84a5994e8fe7d4
parent4247fafd0f361d2373df7213a1a0028554e93d93 (diff)
downloadclogger-724c1f6a3b42a020199554c809a46ddc4b404659.tar.gz
This release fixes a memory leak in the optional C extension due to
misuse of the Ruby C API.  Users of the pure Ruby version are
unaffected.

We also misreleased 0.3.1 with this fix, but without bumping the
Clogger::VERSION constant.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/clogger.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index e1fc604..c129dfa 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v0.3.0.GIT
+DEF_VER=v0.3.2.GIT
 
 LF='
 '
diff --git a/lib/clogger.rb b/lib/clogger.rb
index b23f3fe..641d5c5 100644
--- a/lib/clogger.rb
+++ b/lib/clogger.rb
@@ -1,6 +1,6 @@
 # -*- encoding: binary -*-
 class Clogger
-  VERSION = '0.3.0'
+  VERSION = '0.3.2'
 
   OP_LITERAL = 0
   OP_REQUEST = 1