From 3ff9f88e62a9c0b9e387b478b1e8a386da2d422a Mon Sep 17 00:00:00 2001 From: Sunny Ripert Date: Mon, 15 Jul 2024 17:53:26 +0200 Subject: [PATCH] =?UTF-8?q?v3.9.3=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ CONTRIBUTING.md | 7 +++---- Gemfile.lock | 4 ++-- lib/service_actor/version.rb | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c1590..f33d4df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## unreleased +## v3.9.3 + Fixes: - Fail actor when playing a failing Interactor (#164) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c0f14e7..8a7133f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,10 +31,9 @@ On a pull request, you can add an entry to the ## Releases -To release a new version, update the version number in `version.rb`, and in the -`CHANGELOG.md`. Update the `README.md` if there are missing segments, make sure -tests and linting are pristine by calling `bundle && bin/rake`, then create a -commit for this version, for example with: +To release a new version, update the version number in the `CHANGELOG.md` and in +`version.rb`. Make sure tests and linting are pristine by calling +`bundle && bin/rake`, then create a commit for this version, for example with: ```sh git add --patch diff --git a/Gemfile.lock b/Gemfile.lock index a855c74..2dda958 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - service_actor (3.9.2) + service_actor (3.9.3) zeitwerk (>= 1.0) GEM @@ -124,7 +124,7 @@ GEM strscan (3.1.0) unicode-display_width (2.5.0) version_gem (1.1.4) - zeitwerk (2.6.15) + zeitwerk (2.6.16) PLATFORMS ruby diff --git a/lib/service_actor/version.rb b/lib/service_actor/version.rb index c3f056c..0bbcb3e 100644 --- a/lib/service_actor/version.rb +++ b/lib/service_actor/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ServiceActor - VERSION = "3.9.2" + VERSION = "3.9.3" end