From 4385c3728c6e13c907859975ad7522bcaf0f9458 Mon Sep 17 00:00:00 2001 From: Justin Searls Date: Mon, 24 Jan 2022 23:02:13 -0500 Subject: [PATCH] 0.0.4 --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- lib/maybe_later/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4ba5e2..9c94165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.0.4] - 2022-01-24 + +- Add `invoke_even_if_server_is_unsupported` option to ensure tasks are invoked + even if the server doesn't support rack.after_reply + ## [0.0.3] - 2022-01-21 - Fix a bug where async tasks' after_each callbacks were called rack.after_reply diff --git a/Gemfile.lock b/Gemfile.lock index cb30098..a2a35dd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - maybe_later (0.0.3) + maybe_later (0.0.4) concurrent-ruby (~> 1.1.9) railties (>= 6.0.0) diff --git a/lib/maybe_later/version.rb b/lib/maybe_later/version.rb index d3b0428..6b84d6d 100644 --- a/lib/maybe_later/version.rb +++ b/lib/maybe_later/version.rb @@ -1,3 +1,3 @@ module MaybeLater - VERSION = "0.0.3" + VERSION = "0.0.4" end