Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Commit

Permalink
unicorn 4.2.0
Browse files Browse the repository at this point in the history
The GPLv3 is now an option to the Unicorn license.  The existing GPLv2
and Ruby-only terms will always remain options, but the GPLv3 is
preferred.

Daemonization is correctly detected on all terminals for development
use (Brian P O'Rourke).

Unicorn::OobGC respects applications that disable GC entirely
during application dispatch (Yuichi Tateno).

Many test fixes for OpenBSD, which may help other *BSDs, too.
(Jeremy Evans).

There is now _optional_ SSL support (via the "kgio-monkey"
RubyGem).  On fast, secure LANs, SSL is only intended for
detecting data corruption that weak TCP checksums cannot detect.
Our SSL support is remains unaudited by security experts.

There are also some minor bugfixes and documentation
improvements.

Ruby 2.0.0dev also has a copy-on-write friendly GC which can save memory
when combined with "preload_app true", so if you're in the mood, start
testing Unicorn with the latest Ruby!
  • Loading branch information
Eric Wong committed Jan 28, 2012
1 parent 8478a54 commit b6a154e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GIT-VERSION-GEN
@@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh


GVF=GIT-VERSION-FILE GVF=GIT-VERSION-FILE
DEF_VER=v4.1.1.GIT DEF_VER=v4.2.0.GIT


LF=' LF='
' '
Expand Down
2 changes: 1 addition & 1 deletion lib/unicorn/const.rb
Expand Up @@ -8,7 +8,7 @@
# improve things much compared to constants. # improve things much compared to constants.
module Unicorn::Const module Unicorn::Const


UNICORN_VERSION = "4.1.1" UNICORN_VERSION = "4.2.0"


# default TCP listen host address (0.0.0.0, all interfaces) # default TCP listen host address (0.0.0.0, all interfaces)
DEFAULT_HOST = "0.0.0.0" DEFAULT_HOST = "0.0.0.0"
Expand Down

0 comments on commit b6a154e

Please sign in to comment.