coach 4.0.0 → 4.0.1
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/coach.gemspec +1 -1
- data/docs/COMPATIBILITY.md +1 -1
- data/lib/coach/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f40e716d8b00a9949e42cd022737dedc36d47a12e8e720c7aef3ceb6edb0abf
|
4
|
+
data.tar.gz: 904b31aa3328820a82b40fc7ee7af7076e8f590fae71c38a2153a0eac9b8b97b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbf8afda677fc941b1c160fc4e9f3057adfbb63bfe2256c35b696959df33a31efdc6f871a3f8ef23fa0263ebb09b20116427274de8d28ec625445f768225fcf3
|
7
|
+
data.tar.gz: 1747d20d1b2fd2ae84294b85b382c56ad1edbccbe6edded00da9c510ff6773507b61fe317b56badb0c0dfa3c361c4549f784050cd5749018b366840661e3aa3b
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
# Unreleased
|
4
4
|
|
5
|
+
# 4.0.1 / 2025-07-04
|
6
|
+
|
7
|
+
* Bump `commander` runtime dependency version constraint to `< 6.0` due to deprecation of `abbrev` from Ruby standard library
|
8
|
+
* See https://github.com/commander-rb/commander/pull/102 for additional context
|
9
|
+
|
5
10
|
# 4.0.0 / 2025-01-15
|
6
11
|
|
7
12
|
* Drop support for Rails < 7.0 and Ruby < 3.0
|
data/coach.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.add_dependency "actionpack", ">= 7.0"
|
22
22
|
spec.add_dependency "activesupport", ">= 7.0"
|
23
|
-
spec.add_dependency "commander", "
|
23
|
+
spec.add_dependency "commander", ">= 4.5", "< 6.0"
|
24
24
|
|
25
25
|
spec.metadata["rubygems_mfa_required"] = "true"
|
26
26
|
end
|
data/docs/COMPATIBILITY.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Our goal as Coach maintainers is for the library to be compatible with all supported versions of Ruby and Rails.
|
4
4
|
|
5
|
-
Specifically, any CRuby/MRI version that has not reached
|
5
|
+
Specifically, any CRuby/MRI version that has not reached [End of Life](https://endoflife.date/ruby) is supported. Similarly, any version of Rails listed as currently supported on [this page](https://endoflife.date/rails) is one we aim to support in Coach.
|
6
6
|
|
7
7
|
To that end, [our build matrix](../.github/tests.yml) includes all these versions.
|
8
8
|
|
data/lib/coach/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coach
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GoCardless
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-07-04 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: actionpack
|
@@ -41,16 +41,22 @@ dependencies:
|
|
41
41
|
name: commander
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- - "
|
44
|
+
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '4.5'
|
47
|
+
- - "<"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '6.0'
|
47
50
|
type: :runtime
|
48
51
|
prerelease: false
|
49
52
|
version_requirements: !ruby/object:Gem::Requirement
|
50
53
|
requirements:
|
51
|
-
- - "
|
54
|
+
- - ">="
|
52
55
|
- !ruby/object:Gem::Version
|
53
56
|
version: '4.5'
|
57
|
+
- - "<"
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '6.0'
|
54
60
|
email:
|
55
61
|
- developers@gocardless.com
|
56
62
|
executables:
|