From da148de99c18687964a0976407f76a6fb3513de1 Mon Sep 17 00:00:00 2001 From: Sander Verdonschot Date: Mon, 3 Feb 2025 16:38:46 -0500 Subject: [PATCH] Release job-iteration v1.9.0 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/job-iteration/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a5e8e0..714335eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ nil nil +## v1.9.0 (Feb 3, 2024) + +### Features + +- [533](https://github.com/Shopify/job-iteration/pull/533) Added a custom compiler for [Tapioca](https://github.com/Shopify/tapioca) that generates Sorbet types for `MyJob.perform_later` if `MyJob` includes `JobIteration::Iteration` and has defined a type for `build_enumerator`. + ## v1.8.0 (Dec 10, 2024) ### Changes diff --git a/Gemfile.lock b/Gemfile.lock index 5a370a45..ef762ad9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,7 @@ GIT PATH remote: . specs: - job-iteration (1.8.0) + job-iteration (1.9.0) activejob (>= 5.2) GEM diff --git a/lib/job-iteration/version.rb b/lib/job-iteration/version.rb index 5a2301a5..f4e9f09a 100644 --- a/lib/job-iteration/version.rb +++ b/lib/job-iteration/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module JobIteration - VERSION = "1.8.0" + VERSION = "1.9.0" end