stepper_motor 0.1.16 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b94d7f405351309bd1fbda83b352031795cbee87aad100d412d847e3d03543c
4
- data.tar.gz: 59ecde85caacac0c7e65f6a0c527676bac4700b84fa39ce55443e81592023738
3
+ metadata.gz: ae300e62a2208dff5b41284cf55703bd14bf28605a05daa4a86d40d915a42259
4
+ data.tar.gz: c7d192edf6a455761303ae83647d8e755111cd847c7fb3a1c3ca8d094ed6ca72
5
5
  SHA512:
6
- metadata.gz: 5305f1f98eb8b8c630e45309280fae524ec458d15a75362e647a36e22fd29ca0fe1a7ecbbba186ed60f33b64b7b6b875e66878280e21a6a3196473652b82f098
7
- data.tar.gz: 2e6db70cf8ad6b844c4d7a38eab6f087f785b1a112f446844e25d6d943bffd3f3b71da6bd7baa69c7249a7978a5538d2572235b3f90475b01af8be0d07074cfd
6
+ metadata.gz: 634c4e138fab066753a07bc4627b898dfb2e41ae082e0eb9722dc8fcdad5941a3009f867ec8e2d520aaeebbb8981d583e24bf05ef6f7b7aa667f1950f810401f
7
+ data.tar.gz: cea004de19c142606872fae194bf8079a02ccfc5cebe7d59c04f6d2bcba55255b990d5e16778acdc439918af0ae02ddd5162331435a0fb5c504adbbbf019a58e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.1.17] - 2025-06-20
6
+
7
+ - Mandate Ruby 3.1+ because we are using 3.x syntax and there are shenanigans with sqlite3 gem version and locking. Compatibility with 2.7 can be assured but is too much hassle at the moment.
8
+ If you need this compatibility, feel free to implement it or contact me for a quote.
9
+
5
10
  ## [0.1.16] - 2025-06-20
6
11
 
7
12
  - Add `skip!` flow control method to skip the current (or next) step and move on to the subsequent step, or finish the journey.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module StepperMotor
4
- VERSION = "0.1.16"
4
+ VERSION = "0.1.17"
5
5
  end
@@ -2,7 +2,7 @@
2
2
  # StepperMotor is a module for building multi-step flows where steps are sequential and only
3
3
  # ever progress forward. The building block of StepperMotor is StepperMotor::Journey
4
4
  module StepperMotor
5
- VERSION = T.let("0.1.16", T.untyped)
5
+ VERSION = T.let("0.1.17", T.untyped)
6
6
  PerformStepJobV2 = T.let(StepperMotor::PerformStepJob, T.untyped)
7
7
  RecoverStuckJourneysJobV1 = T.let(StepperMotor::RecoverStuckJourneysJob, T.untyped)
8
8
 
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = "Effortless step workflows that embed nicely inside Rails"
13
13
  spec.description = "Step workflows for Rails/ActiveRecord"
14
14
  spec.homepage = "https://steppermotor.dev"
15
- spec.required_ruby_version = ">= 2.7.0"
15
+ spec.required_ruby_version = ">= 3.1.0"
16
16
 
17
17
  spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stepper_motor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -337,7 +337,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
337
337
  requirements:
338
338
  - - ">="
339
339
  - !ruby/object:Gem::Version
340
- version: 2.7.0
340
+ version: 3.1.0
341
341
  required_rubygems_version: !ruby/object:Gem::Requirement
342
342
  requirements:
343
343
  - - ">="