Skip to content

Commit

Permalink
Merge pull request #1614 from puma/schneems/version-bump
Browse files Browse the repository at this point in the history
v3.12.0
  • Loading branch information
schneems committed Jul 13, 2018
2 parents c3b3a97 + 8eb215d commit f7e1e58
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions History.md
@@ -1,3 +1,16 @@
## 3.12.0 / 2018-07-13

* 5 features:
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
* Pool capacity is now in `Puma.stats` (#1579)
* Installs restricted to Ruby 2.2+ (#1506)
* `--control` is now deprecated in favor of `--control-url` (#1487)

* 2 bugfixes:
* Workers will no longer accept more web requests than they have capacity to process. This prevents an issue where one worker would accept lots of requests while starving other workers (#1563)
* In a test env puma now emits the stack on an exception (#1557)

## 3.11.4 / 2018-04-12

* 2 features:
Expand Down
4 changes: 2 additions & 2 deletions lib/puma/const.rb
Expand Up @@ -98,8 +98,8 @@ class UnsupportedOption < RuntimeError
# too taxing on performance.
module Const

PUMA_VERSION = VERSION = "3.11.4".freeze
CODE_NAME = "Love Song".freeze
PUMA_VERSION = VERSION = "3.12.0".freeze
CODE_NAME = "Llamas in Pajamas".freeze
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze

FAST_TRACK_KA_TIMEOUT = 0.2
Expand Down

0 comments on commit f7e1e58

Please sign in to comment.