From 3660c5932099e351d29eb1e047a0249d21ff26ee Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Tue, 4 Apr 2023 14:51:30 +0200 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 1 + Gemfile.lock | 4 ++-- lib/pitchfork/version.rb | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bec8375f..6c957e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Unreleased +- Remove default middlewares. - Refork indefinitely when `refork_after` is set, unless the last element is `false`. - Remove `mold_selector`. The promotion logic has been moved inside workers (#38). - Add the `after_promotion` callback. diff --git a/Gemfile.lock b/Gemfile.lock index 54cf7661..12f0c869 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pitchfork (0.1.2) + pitchfork (0.2.0) rack (>= 2.0) raindrops (~> 0.7) @@ -12,7 +12,7 @@ GEM nio4r (2.5.8) puma (6.1.1) nio4r (~> 2.0) - rack (3.0.6.1) + rack (3.0.7) 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 068a3386..6dd6e00c 100644 --- a/lib/pitchfork/version.rb +++ b/lib/pitchfork/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Pitchfork - VERSION = "0.1.2" + VERSION = "0.2.0" module Const UNICORN_VERSION = '6.1.0' end