about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-04-06 12:21:03 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-04-06 12:21:03 +0000
commit82b29878626ddea6eb7fb3e6bfe4313f0bce5708 (patch)
tree5a3f858e2fbf0698e0c04e091dd544c01eedeb5a
parent6947497b6001ca9f46009cd78f9d55db4d0fc007 (diff)
downloadunicorn-82b29878626ddea6eb7fb3e6bfe4313f0bce5708.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@149 19e92222-5c0b-0410-8929-a290d50e31e9
-rw-r--r--Rakefile2
-rw-r--r--ext/http11/http11.c2
-rw-r--r--lib/mongrel.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 127fcc6..1961400 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,7 +32,7 @@ end
 setup_extension("http11", "http11")
 
 name="mongrel"
-version="0.3.12.2"
+version="0.3.12.3"
 
 setup_gem(name, version) do |spec|
   spec.summary = "A small fast HTTP library and server that runs Rails, Camping, and Nitro apps."
diff --git a/ext/http11/http11.c b/ext/http11/http11.c
index ffdbee3..8473717 100644
--- a/ext/http11/http11.c
+++ b/ext/http11/http11.c
@@ -520,7 +520,7 @@ void Init_http11()
   DEF_GLOBAL(server_protocol, "SERVER_PROTOCOL");
   DEF_GLOBAL(server_protocol_value, "HTTP/1.1");
   DEF_GLOBAL(http_host, "HTTP_HOST");
-  DEF_GLOBAL(mongrel_version, "Mongrel 0.3.12.2");
+  DEF_GLOBAL(mongrel_version, "Mongrel 0.3.12.3");
   DEF_GLOBAL(server_software, "SERVER_SOFTWARE");
   DEF_GLOBAL(port_80, "80");
 
diff --git a/lib/mongrel.rb b/lib/mongrel.rb
index 500c62d..65c377d 100644
--- a/lib/mongrel.rb
+++ b/lib/mongrel.rb
@@ -99,7 +99,7 @@ module Mongrel
     # The original URI requested by the client.  Passed to URIClassifier to build PATH_INFO and SCRIPT_NAME.
     REQUEST_URI='REQUEST_URI'.freeze
 
-    MONGREL_VERSION="0.3.12.2".freeze
+    MONGREL_VERSION="0.3.12.3".freeze
 
     # The standard empty 404 response for bad requests.  Use Error4040Handler for custom stuff.
     ERROR_404_RESPONSE="HTTP/1.1 404 Not Found\r\nConnection: close\r\nServer: #{MONGREL_VERSION}\r\n\r\nNOT FOUND".freeze