about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--Manifest23
-rw-r--r--lib/unicorn/const.rb2
3 files changed, 25 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9089148..cddb5be 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,4 @@
+v0.4.2 - fix Rails ARStore, FD leak prevention, descriptive proctitles
 v0.4.1 - Rails support, per-listener backlog and {snd,rcv}buf
 v0.2.3 - Unlink Tempfiles after use (they were closed, just not unlinked)
 v0.2.2 - small bug fixes, fix Rack multi-value headers (Set-Cookie:)
diff --git a/Manifest b/Manifest
index ee1d562..5718e95 100644
--- a/Manifest
+++ b/Manifest
@@ -43,6 +43,7 @@ test/benchmark/response.rb
 test/exec/README
 test/exec/test_exec.rb
 test/rails/app-1.2.3/.gitignore
+test/rails/app-1.2.3/Rakefile
 test/rails/app-1.2.3/app/controllers/application.rb
 test/rails/app-1.2.3/app/controllers/foo_controller.rb
 test/rails/app-1.2.3/app/helpers/application_helper.rb
@@ -53,9 +54,11 @@ test/rails/app-1.2.3/config/environments/development.rb
 test/rails/app-1.2.3/config/environments/production.rb
 test/rails/app-1.2.3/config/routes.rb
 test/rails/app-1.2.3/db/.gitignore
+test/rails/app-1.2.3/log/.gitignore
 test/rails/app-1.2.3/public/404.html
 test/rails/app-1.2.3/public/500.html
 test/rails/app-2.0.2/.gitignore
+test/rails/app-2.0.2/Rakefile
 test/rails/app-2.0.2/app/controllers/application.rb
 test/rails/app-2.0.2/app/controllers/foo_controller.rb
 test/rails/app-2.0.2/app/helpers/application_helper.rb
@@ -66,9 +69,26 @@ test/rails/app-2.0.2/config/environments/development.rb
 test/rails/app-2.0.2/config/environments/production.rb
 test/rails/app-2.0.2/config/routes.rb
 test/rails/app-2.0.2/db/.gitignore
+test/rails/app-2.0.2/log/.gitignore
 test/rails/app-2.0.2/public/404.html
 test/rails/app-2.0.2/public/500.html
+test/rails/app-2.1.2/.gitignore
+test/rails/app-2.1.2/Rakefile
+test/rails/app-2.1.2/app/controllers/application.rb
+test/rails/app-2.1.2/app/controllers/foo_controller.rb
+test/rails/app-2.1.2/app/helpers/application_helper.rb
+test/rails/app-2.1.2/config/boot.rb
+test/rails/app-2.1.2/config/database.yml
+test/rails/app-2.1.2/config/environment.rb
+test/rails/app-2.1.2/config/environments/development.rb
+test/rails/app-2.1.2/config/environments/production.rb
+test/rails/app-2.1.2/config/routes.rb
+test/rails/app-2.1.2/db/.gitignore
+test/rails/app-2.1.2/log/.gitignore
+test/rails/app-2.1.2/public/404.html
+test/rails/app-2.1.2/public/500.html
 test/rails/app-2.2.2/.gitignore
+test/rails/app-2.2.2/Rakefile
 test/rails/app-2.2.2/app/controllers/application.rb
 test/rails/app-2.2.2/app/controllers/foo_controller.rb
 test/rails/app-2.2.2/app/helpers/application_helper.rb
@@ -79,9 +99,11 @@ test/rails/app-2.2.2/config/environments/development.rb
 test/rails/app-2.2.2/config/environments/production.rb
 test/rails/app-2.2.2/config/routes.rb
 test/rails/app-2.2.2/db/.gitignore
+test/rails/app-2.2.2/log/.gitignore
 test/rails/app-2.2.2/public/404.html
 test/rails/app-2.2.2/public/500.html
 test/rails/app-2.3.2.1/.gitignore
+test/rails/app-2.3.2.1/Rakefile
 test/rails/app-2.3.2.1/app/controllers/application_controller.rb
 test/rails/app-2.3.2.1/app/controllers/foo_controller.rb
 test/rails/app-2.3.2.1/app/helpers/application_helper.rb
@@ -92,6 +114,7 @@ test/rails/app-2.3.2.1/config/environments/development.rb
 test/rails/app-2.3.2.1/config/environments/production.rb
 test/rails/app-2.3.2.1/config/routes.rb
 test/rails/app-2.3.2.1/db/.gitignore
+test/rails/app-2.3.2.1/log/.gitignore
 test/rails/app-2.3.2.1/public/404.html
 test/rails/app-2.3.2.1/public/500.html
 test/rails/test_rails.rb
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index 6c18cf2..f359594 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -58,7 +58,7 @@ module Unicorn
     REQUEST_URI='REQUEST_URI'.freeze
     REQUEST_PATH='REQUEST_PATH'.freeze
     
-    UNICORN_VERSION="0.4.1".freeze
+    UNICORN_VERSION="0.4.2".freeze
 
     UNICORN_TMP_BASE="unicorn".freeze