about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-08-16 17:19:04 -0700
committerEric Wong <normalperson@yhbt.net>2009-08-16 17:20:14 -0700
commit12d9161f33e98331552a8a767c4fc11ab741cc5a (patch)
tree12d27f8080c75a8677d9b2acc621c4d8f237b693
parent499d42c808347a598dabe8e7922778df29339f15 (diff)
downloadunicorn-12d9161f33e98331552a8a767c4fc11ab741cc5a.tar.gz
-rw-r--r--CHANGELOG3
-rw-r--r--README12
-rw-r--r--lib/unicorn/const.rb2
3 files changed, 10 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 401c0f7..96aebae 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
+v0.90.0 - switch chunking+trailer handling to Ragel, v0.8.4 fixes
 v0.9.2 - Ruby 1.9.2 preview1 compatibility
 v0.9.1 - FD_CLOEXEC portability fix (v0.8.2 port)
 v0.9.0 - bodies: "Transfer-Encoding: chunked", rewindable streaming
+v0.8.4 - pass through unknown HTTP status codes
+v0.8.3 - Ruby 1.9.2 preview1 compatibility
 v0.8.2 - socket handling bugfixes and usability tweaks
 v0.8.1 - safer timeout handling, more consistent reload behavior
 v0.8.0 - enforce Rack dependency, minor performance improvements and fixes
diff --git a/README b/README
index 6e59757..aba9122 100644
--- a/README
+++ b/README
@@ -47,15 +47,15 @@
 
 * Simple and easy Ruby DSL for configuration.
 
-* *Development branch* Decodes chunked transfers on-the-fly,
-  this allows upload progress notification to be implemented as well
-  as being able to tunnel arbitrary stream-based protocols over HTTP.
+* Decodes chunked transfers on-the-fly, thus allowing upload progress
+  notification to be implemented as well as being able to tunnel
+  arbitrary stream-based protocols over HTTP.
 
 == Versions
 
-{Stable v0.8.4}[http://git.bogomips.org/cgit/unicorn.git/tag/?id=v0.8.4]
+{Current v0.90.0}[http://git.bogomips.org/cgit/unicorn.git/tag/?id=v0.90.0]
 
-{Development v0.9.2}[http://git.bogomips.org/cgit/unicorn.git/tag/?id=v0.9.2]
+{Old Stable v0.8.4}[http://git.bogomips.org/cgit/unicorn.git/tag/?id=v0.8.4]
 
 == License
 
@@ -80,7 +80,7 @@ http://rubyforge.org/frs/?group_id=1306
 
 You may also install it via Rubygems on Rubyforge:
 
-  gem install unicorn -v0.8.4
+  gem install unicorn
 
 You can get the latest source via git from the following locations
 (these versions may not be stable):
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index 253440f..f2e4656 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -5,7 +5,7 @@ module Unicorn
   # gave about a 3% to 10% performance improvement over using the strings directly.
   # Symbols did not really improve things much compared to constants.
   module Const
-    UNICORN_VERSION="0.9.2".freeze
+    UNICORN_VERSION="0.90.0".freeze
 
     DEFAULT_HOST = "0.0.0.0".freeze # default TCP listen host address
     DEFAULT_PORT = "8080".freeze    # default TCP listen port