mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Bump to 2.9.0
This commit is contained in:
parent
6451a1fd06
commit
55b9ce01e5
3 changed files with 27 additions and 3 deletions
24
History.txt
24
History.txt
|
@ -1,3 +1,27 @@
|
|||
=== 2.9.0 / 2014-07-12
|
||||
|
||||
* 1 minor feature:
|
||||
* Add SSL support for JRuby
|
||||
|
||||
* 3 bug fixes:
|
||||
* Typo BUNDLER_GEMFILE -> BUNDLE_GEMFILE
|
||||
* Use fast_write because we can't trust syswrite
|
||||
* pumactl - do not modify original ARGV
|
||||
|
||||
* 4 doc fixes:
|
||||
* BSD-3-Clause over BSD to avoid confusion
|
||||
* Deploy doc: clarification of the GIL
|
||||
* Fix typo in DEPLOYMENT.md
|
||||
* Update README.md
|
||||
|
||||
* 6 PRs merged:
|
||||
* Merge pull request #520 from misfo/patch-2
|
||||
* Merge pull request #530 from looker/jruby-ssl
|
||||
* Merge pull request #537 from vlmonk/patch-1
|
||||
* Merge pull request #540 from allaire/patch-1
|
||||
* Merge pull request #544 from chulkilee/bsd-3-clause
|
||||
* Merge pull request #551 from jcxplorer/patch-1
|
||||
|
||||
=== 2.8.2 / 2014-04-12
|
||||
|
||||
* 4 bug fixes:
|
||||
|
|
2
Rakefile
2
Rakefile
|
@ -22,7 +22,7 @@ HOE = Hoe.spec "puma" do
|
|||
|
||||
dependency "rack", [">= 1.1", "< 2.0"]
|
||||
|
||||
extra_dev_deps << ["rake-compiler", "~> 0.8.0"]
|
||||
extra_dev_deps << ["rake-compiler", "~> 0.8"]
|
||||
end
|
||||
|
||||
task :prerelease => [:clobber, :check_manifest, :test]
|
||||
|
|
|
@ -28,8 +28,8 @@ module Puma
|
|||
# too taxing on performance.
|
||||
module Const
|
||||
|
||||
PUMA_VERSION = VERSION = "2.8.2".freeze
|
||||
CODE_NAME = "Sir Edmund Percival Hillary".freeze
|
||||
PUMA_VERSION = VERSION = "2.9.0".freeze
|
||||
CODE_NAME = "Team High Five".freeze
|
||||
|
||||
FAST_TRACK_KA_TIMEOUT = 0.2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue