From e3116a6695b056ee65c12e01cdaa749fed74baa3 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Mon, 8 Apr 2024 16:48:05 +0200 Subject: [PATCH] Release 0.13.0 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 4 ++-- lib/pitchfork/version.rb | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a42e82aa..4c88f5af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Unreleased +# 0.13.0 + +- Fix compatibility with `--enable-frozen-string-literal` in preparation for Ruby 3.4. +- Extend timed out workers deadline after sending signals to avoid flooding. +- Fix compilation with Ruby 2.7 and older on macOS. + # 0.12.0 - Disable IO tracking on Rubies older than 3.2.3 to avoid running into https://bugs.ruby-lang.org/issues/19531. diff --git a/Gemfile.lock b/Gemfile.lock index 9a1dd6ae..0732a763 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pitchfork (0.12.0) + pitchfork (0.13.0) rack (>= 2.0) raindrops (~> 0.7) @@ -12,7 +12,7 @@ GEM nio4r (2.7.0) puma (6.4.2) nio4r (~> 2.0) - rack (3.0.9.1) + rack (3.0.10) raindrops (0.20.1) rake (13.0.6) rake-compiler (1.2.1) diff --git a/lib/pitchfork/version.rb b/lib/pitchfork/version.rb index c1cb3706..d3cb15cc 100644 --- a/lib/pitchfork/version.rb +++ b/lib/pitchfork/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Pitchfork - VERSION = "0.12.0" + VERSION = "0.13.0" module Const UNICORN_VERSION = '6.1.0' end