From 46cb6754c5e3559ae003dde040aa40ffd6d69748 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Wed, 6 Feb 2013 18:15:30 -0800 Subject: [PATCH] Bump to 2.0.0.b6 --- History.txt | 11 +++++++++++ lib/puma/const.rb | 2 +- puma.gemspec | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index f80dd118..a6b08c58 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,14 @@ +=== 2.0.0.b6 / 2013-02-06 + +* 2 minor enhancements: + + * Add hook for running when a worker boots + * Advertise the Configuration object for apps to use. + +* 1 bug fix: + + * Change directory in working during upgrade. Fixes #185 + === 2.0.0.b5 / 2013-02-05 * 2 major features: diff --git a/lib/puma/const.rb b/lib/puma/const.rb index bc6dbb66..1a09c39b 100644 --- a/lib/puma/const.rb +++ b/lib/puma/const.rb @@ -28,7 +28,7 @@ module Puma # too taxing on performance. module Const - PUMA_VERSION = VERSION = "2.0.0.b5".freeze + PUMA_VERSION = VERSION = "2.0.0.b6".freeze FAST_TRACK_KA_TIMEOUT = 0.2 diff --git a/puma.gemspec b/puma.gemspec index 4ba2c01a..0914a1c4 100644 --- a/puma.gemspec +++ b/puma.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = "puma" - s.version = "2.0.0.b5" + s.version = "2.0.0.b6" s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.authors = ["Evan Phoenix"] - s.date = "2013-02-06" + s.date = "2013-02-07" s.description = "Puma is a simple, fast, and highly concurrent HTTP 1.1 server for Ruby web applications. It can be used with any application that supports Rack, and is considered the replacement for Webrick and Mongrel. It was designed to be the go-to server for [Rubinius](http://rubini.us), but also works well with JRuby and MRI. Puma is intended for use in both development and production environments.\n\nUnder the hood, Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request in a thread from an internal thread pool (which you can control). This allows Puma to provide real concurrency for your web application!\n\nWith Rubinius 2.0, Puma will utilize all cores on your CPU with real threads, meaning you won't have to spawn multiple processes to increase throughput. You can expect to see a similar benefit from JRuby.\n\nOn MRI, there is a Global Interpreter Lock (GIL) that ensures only one thread can be run at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing blocking IO to be run concurrently (EventMachine-based servers such as Thin turn off this ability, requiring you to use special libraries). Your mileage may vary. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like [Rubinius](http://rubini.us) or [JRuby](http://jruby.org)." s.email = ["evan@phx.io"] s.executables = ["puma", "pumactl"]