Skip to content

Commit

Permalink
5.2.2 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
nateberkopec committed Feb 22, 2021
1 parent 7a2cdf6 commit 7970d14
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## 5.2.2 / 2021-02-
## 5.2.2 / 2021-02-22

* Bugfixes
* Add `#flush` and `#sync` methods to `Puma::NullIO` ([#2553])
* Restore `sync=true` on `STDOUT` and `STDERR` streams #2557
* Restore `sync=true` on `STDOUT` and `STDERR` streams ([#2557])

## 5.2.1 / 2021-02-05

Expand Down Expand Up @@ -1708,6 +1708,8 @@ be added back in a future date when a java Puma::MiniSSL is added.
* Bugfixes
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)

[#2557]:https://github.com/puma/puma/pull/2557 "PR by @cjlarose, merged 2021-02-22"
[#2553]:https://github.com/puma/puma/pull/2553 "PR by @olivierbellone, merged 02-10-22"
[#2550]:https://github.com/puma/puma/pull/2550 "PR by @MSP-Greg, merged 2021-02-05"
[#2547]:https://github.com/puma/puma/pull/2547 "PR by @wildmaples, merged 2021-02-03"
[#2543]:https://github.com/puma/puma/pull/2543 "PR by @MSP-Greg, merged 2021-02-01"
Expand Down
2 changes: 1 addition & 1 deletion lib/puma/const.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class UnsupportedOption < RuntimeError
# too taxing on performance.
module Const

PUMA_VERSION = VERSION = "5.2.1".freeze
PUMA_VERSION = VERSION = "5.2.2".freeze
CODE_NAME = "Fettisdagsbulle".freeze

PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
Expand Down

3 comments on commit 7970d14

@ghiculescu
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI, https://rubygems.org/gems/puma is only up to 5.2.1

@cjlarose
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests were failing in Windows, so we held off publishing this version for now.

The fix might be #2560

@nateberkopec
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup will fix soon

Please sign in to comment.