about summary refs log tree commit homepage
path: root/lib/unicorn
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-11-21 12:56:34 -0800
committerEric Wong <normalperson@yhbt.net>2009-11-21 13:05:07 -0800
commitdda4035f18c81884b895bef9e56128ce0c8083c0 (patch)
tree64098dab4879e90f0b65dcc139d5636b5b8d98d5 /lib/unicorn
parentd54b6d761563e92e5ed1342d344739ad163a2b74 (diff)
downloadunicorn-dda4035f18c81884b895bef9e56128ce0c8083c0.tar.gz
Configuration files paths given on the command-line are no
longer expanded.  This should make configuration reloads
possible when a non-absolute path is specified for --config-file
and Unicorn was deployed to a symlink directories (as with
Capistrano).  Since deployments have always been strongly
encouraged to use absolute paths in the config file, this
change does not affect them.

This is our first gem release using gemcutter.

Eric Wong (3):
      SIGNALS: HUP + preload_app cannot reload app code
      Do not expand paths given on the shell
      GNUmakefile: prep release process for gemcutter
Diffstat (limited to 'lib/unicorn')
-rw-r--r--lib/unicorn/const.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index 72921da..06713dd 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -7,7 +7,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.95.0"
+    UNICORN_VERSION="0.95.1"
 
     DEFAULT_HOST = "0.0.0.0" # default TCP listen host address
     DEFAULT_PORT = 8080      # default TCP listen port