1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Add beta1 version

This commit is contained in:
Nate Berkopec 2020-05-11 12:20:17 +09:00
parent 7b5b7ba8a2
commit 6e8b1e2e57
No known key found for this signature in database
GPG key ID: BDD7A4B8E43906A6
3 changed files with 5 additions and 7 deletions

View file

@ -1,4 +1,4 @@
## Master
## 5.0.0
* Features
* EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage. (#2099)

View file

@ -100,8 +100,8 @@ module Puma
# too taxing on performance.
module Const
PUMA_VERSION = VERSION = "4.3.3".freeze
CODE_NAME = "Mysterious Traveller".freeze
PUMA_VERSION = VERSION = "5.0.0.beta1".freeze
CODE_NAME = "Spoony Bard".freeze
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
FAST_TRACK_KA_TIMEOUT = 0.2

View file

@ -1,10 +1,8 @@
# -*- encoding: utf-8 -*-
version = File.read(File.expand_path("../lib/puma/const.rb", __FILE__))[/VERSION = "(\d+\.\d+\.\d+)"/, 1] || raise
require_relative "lib/puma/const"
Gem::Specification.new do |s|
s.name = "puma"
s.version = version
s.version = Puma::Const::PUMA_VERSION
s.authors = ["Evan Phoenix"]
s.description = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. It's great for highly concurrent Ruby implementations such as Rubinius and JRuby as well as as providing process worker support to support CRuby well."
s.summary = "Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications"