1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Bump version to 1.2.0.pre2 for new release.

This commit is contained in:
Luis Lavena 2010-03-18 23:07:15 +01:00
parent 05de09b0ff
commit 7e1bf76c4c
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
=== 1.2.0.pre / 2009-07-07
=== 1.2.0.pre2 / 2010-03-18
Improvements:

View file

@ -515,7 +515,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 1.2.0.pre"); /* XXX Why is this defined here? */
DEF_GLOBAL(mongrel_version, "Mongrel 1.2.0.pre2"); /* XXX Why is this defined here? */
DEF_GLOBAL(server_software, "SERVER_SOFTWARE");
DEF_GLOBAL(port_80, "80");

View file

@ -183,7 +183,7 @@ public class Http11 extends RubyObject {
req.setInstanceVariable("@http_body", RubyString.newString(runtime, new ByteList(hp.parser.buffer, at, length)));
req.op_aset(context, runtime.newString("SERVER_PROTOCOL"),runtime.newString("HTTP/1.1"));
req.op_aset(context, runtime.newString("SERVER_SOFTWARE"),runtime.newString("Mongrel 1.2.0.pre"));
req.op_aset(context, runtime.newString("SERVER_SOFTWARE"),runtime.newString("Mongrel 1.2.0.pre2"));
}
};

View file

@ -65,7 +65,7 @@ module Mongrel
REQUEST_URI='REQUEST_URI'.freeze
REQUEST_PATH='REQUEST_PATH'.freeze
MONGREL_VERSION = VERSION = "1.2.0.pre".freeze
MONGREL_VERSION = VERSION = "1.2.0.pre2".freeze
MONGREL_TMP_BASE="mongrel".freeze