gitlab-releases 0.2.9 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 398d982b17a8d628849e352c7ee03f10e61c8c614c832ace28902fd326a5eebb
4
- data.tar.gz: 69d632509a623cd23dc7498d5a60ec118154c51b98d034bce5e4952210f80355
3
+ metadata.gz: 3e51c4e22adebcd75c05415b56213905d1f78dc1f72f15da5da2d82224d83922
4
+ data.tar.gz: 40eb75af8a217fe84e32bca60da04397f8ef9cc326eb4485ac74775bd6ee3413
5
5
  SHA512:
6
- metadata.gz: 180fe99859fa9342cda4d121b756a7fc393d4b4579a2d534e9d47b3f3bacbe54408c4c27671ab345a50fffc7c70a32e3c080dfdf94810252414c9318c3a4f27b
7
- data.tar.gz: 9ab1c1360811f394d8dd00f992fb0253b0fa9d21f545394cd650c1cde8c14ad23a04562f16e6e1b492239d56c1193e415e157a95342cad36c143585dd0ccd4bc
6
+ metadata.gz: 8ebfea495dd73367f14066c7d21dfec3c68f43c7d3588941793c39d0099b87ba9d73a6c1d1b7b8ea50bc11eb22705f0fc47cde223b100baa38864bbc51b26a78
7
+ data.tar.gz: a1f42624bc33734f2cd698cdf7a0ac7f22f937ff05da355dda48f3e3154fe404e2d3c8ff62ce214455f4ad4eaadcff6957487cb06548f87af5143b9519b8330e
data/.rubocop.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  AllCops:
2
- TargetRubyVersion: 3.0
2
+ TargetRubyVersion: 3.3
3
3
 
4
4
  Style/StringLiterals:
5
5
  Enabled: false
@@ -24,3 +24,6 @@ Lint/MixedRegexpCaptureTypes:
24
24
 
25
25
  Metrics/BlockLength:
26
26
  Enabled: false
27
+
28
+ Style/HashSyntax:
29
+ EnforcedShorthandSyntax: either
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.0
1
+ 3.3.1
data/CHANGELOG.md CHANGED
@@ -1,58 +1,69 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2023-08-01
3
+ ## [1.0.1] - 2024-11-20
4
4
 
5
- - Initial release. Starting with 16.6, GitLab monthly release date will be moved from the 22nd to the 3rd Thursday of each month, this gem automatically calculates the release dates and the associated version for 12 months in advance.
5
+ - Upgrade gitlab gem to 5.1
6
+ - Upgrade activesupport gem to 8.0
6
7
 
7
- ## [0.1.1] - 2023-08-21
8
+ ## [1.0.0] - 2024-07-04
8
9
 
9
- - Gem renamed to `releases` to account for new utility methods included (`active_version`, `current_version`, `next_versions`)
10
+ - Upgrade Ruby to 3.3.1
11
+ - Upgrade gitlab gem to 4.20.1
12
+ - Add runbook for publishing new versions of this gem
10
13
 
11
- ## [0.1.2] - 2023-08-22
14
+ ## [0.2.9] - 2024-04-18
15
+
16
+ - Fixes `ReleaseCalculator` class to consider major milestones.
17
+
18
+ ## [0.2.8]
12
19
 
13
20
  - Yanked version
14
21
 
15
- ## [0.1.3] - 2023-08-22
22
+ ## [0.2.7] - 2024-03-06
16
23
 
17
- - `version_for_date` and `previous_version` methods included.
24
+ - Add `next_patch_release_date` method to return the next best-effort date for patch releases
18
25
 
19
- ## [0.2.0] - 2023-08-31
26
+ ## [0.2.6] - 2024-02-22
20
27
 
21
- - Gem renamed to `gitlab-releases` to align with GitLab gem naming conventions
22
- - PRODUCTION_TOKEN renamed to RELEASES_GITLAB_READ_TOKEN
28
+ - Add `available_versions` method to return the available GitLab versions (sorted by most recent)
23
29
 
24
- ## [0.2.1] - 2023-09-25
30
+ ## [0.2.5] - 2023-11-23
25
31
 
26
- - `GitlabReleases.active_version` was updated to consider dates equal than the date provided. This mirrors the logic used in release-tools.
32
+ - Add methods to calculate the current version of a given date (`#current_minor_for_date`) and the previous minors for a specific version (`#previous_minors`)
27
33
 
28
- ## [0.2.2] - 2023-10-02
34
+ ## [0.2.4] - 2023-11-03
29
35
 
30
- - Fixed `previous_version` to return the latest patch of the previous minor version.
36
+ - Remove logic for static release date. All release dates will be calculated based on the third Thursday of the month.
31
37
 
32
38
  ## [0.2.3] - 2023-10-11
33
39
 
34
40
  - Update ActiveSupport gem and loosen version restriction
35
41
 
36
- ## [0.2.4] - 2023-11-03
42
+ ## [0.2.2] - 2023-10-02
37
43
 
38
- - Remove logic for static release date. All release dates will be calculated based on the third Thursday of the month.
44
+ - Fixed `previous_version` to return the latest patch of the previous minor version.
39
45
 
40
- ## [0.2.5] - 2023-11-23
46
+ ## [0.2.1] - 2023-09-25
41
47
 
42
- - Add methods to calculate the current version of a given date (`#current_minor_for_date`) and the previous minors for a specific version (`#previous_minors`)
48
+ - `GitlabReleases.active_version` was updated to consider dates equal than the date provided. This mirrors the logic used in release-tools.
43
49
 
44
- ## [0.2.6] - 2024-02-22
50
+ ## [0.2.0] - 2023-08-31
45
51
 
46
- - Add `available_versions` method to return the available GitLab versions (sorted by most recent)
52
+ - Gem renamed to `gitlab-releases` to align with GitLab gem naming conventions
53
+ - PRODUCTION_TOKEN renamed to RELEASES_GITLAB_READ_TOKEN
47
54
 
48
- ## [0.2.7] - 2024-03-06
55
+ ## [0.1.3] - 2023-08-22
49
56
 
50
- - Add `next_patch_release_date` method to return the next best-effort date for patch releases
57
+ - `version_for_date` and `previous_version` methods included.
51
58
 
52
- ## [0.2.8]
59
+ ## [0.1.2] - 2023-08-22
53
60
 
54
61
  - Yanked version
55
62
 
56
- ## [0.2.9] - 2024-04-18
63
+ ## [0.1.1] - 2023-08-21
57
64
 
58
- - Fixes `ReleaseCalculator` class to consider major milestones.
65
+ - Gem renamed to `releases` to account for new utility methods included (`active_version`, `current_version`, `next_versions`)
66
+
67
+ ## [0.1.0] - 2023-08-01
68
+
69
+ - Initial release. Starting with 16.6, GitLab monthly release date will be moved from the 22nd to the 3rd Thursday of each month, this gem automatically calculates the release dates and the associated version for 12 months in advance.
data/Gemfile CHANGED
@@ -5,9 +5,9 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in gitlab-releases.gemspec
6
6
  gemspec
7
7
 
8
- gem 'activesupport', '~> 7.1'
9
- gem 'gitlab', '~> 4.19.0'
10
- gem 'http', '~> 5.1.1'
8
+ gem 'activesupport', '~> 8.0'
9
+ gem 'gitlab', '~> 5.1'
10
+ gem 'http', '~> 5.2.0'
11
11
  gem 'rake', '~> 13.0'
12
12
  gem 'retriable', '~> 3.1.2'
13
13
  gem 'version_sorter', '~> 2.3.0'
data/Gemfile.lock CHANGED
@@ -1,118 +1,131 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-releases (0.2.7)
5
- activesupport (~> 7.1)
6
- gitlab (~> 4.19.0)
7
- http (~> 5.1.1, ~> 5.1)
4
+ gitlab-releases (1.0.1)
5
+ activesupport (~> 8.0)
6
+ gitlab (~> 5.1)
7
+ http (~> 5.2.0, ~> 5.2)
8
8
  retriable (~> 3.1.2)
9
9
  version_sorter (~> 2.3.0)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activesupport (7.1.3.2)
14
+ activesupport (8.0.0)
15
15
  base64
16
+ benchmark (>= 0.3)
16
17
  bigdecimal
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ concurrent-ruby (~> 1.0, >= 1.3.1)
18
19
  connection_pool (>= 2.2.5)
19
20
  drb
20
21
  i18n (>= 1.6, < 2)
22
+ logger (>= 1.4.2)
21
23
  minitest (>= 5.1)
22
- mutex_m
23
- tzinfo (~> 2.0)
24
+ securerandom (>= 0.3)
25
+ tzinfo (~> 2.0, >= 2.0.5)
26
+ uri (>= 0.13.1)
24
27
  addressable (2.8.6)
25
28
  public_suffix (>= 2.0.2, < 6.0)
26
29
  ast (2.4.2)
27
30
  base64 (0.2.0)
28
- bigdecimal (3.1.6)
29
- binding_of_caller (1.0.0)
30
- debug_inspector (>= 0.0.1)
31
+ benchmark (0.4.0)
32
+ bigdecimal (3.1.8)
33
+ binding_of_caller (1.0.1)
34
+ debug_inspector (>= 1.2.0)
31
35
  coderay (1.1.3)
32
- concurrent-ruby (1.2.3)
36
+ concurrent-ruby (1.3.4)
33
37
  connection_pool (2.4.1)
34
38
  crack (1.0.0)
35
39
  bigdecimal
36
40
  rexml
41
+ csv (3.3.0)
37
42
  debug_inspector (1.2.0)
38
43
  diff-lcs (1.5.1)
39
44
  domain_name (0.6.20240107)
40
- drb (2.2.0)
41
- ruby2_keywords
42
- ffi (1.16.3)
43
- ffi-compiler (1.0.1)
44
- ffi (>= 1.0.0)
45
+ drb (2.2.1)
46
+ ffi (1.17.0)
47
+ ffi (1.17.0-arm64-darwin)
48
+ ffi (1.17.0-x86_64-darwin)
49
+ ffi (1.17.0-x86_64-linux-gnu)
50
+ ffi-compiler (1.3.2)
51
+ ffi (>= 1.15.5)
45
52
  rake
46
- gitlab (4.19.0)
53
+ gitlab (5.1.0)
54
+ base64 (~> 0.2.0)
47
55
  httparty (~> 0.20)
48
56
  terminal-table (>= 1.5.1)
49
57
  hashdiff (1.1.0)
50
- http (5.1.1)
58
+ http (5.2.0)
51
59
  addressable (~> 2.8)
60
+ base64 (~> 0.1)
52
61
  http-cookie (~> 1.0)
53
62
  http-form_data (~> 2.2)
54
- llhttp-ffi (~> 0.4.0)
55
- http-cookie (1.0.5)
63
+ llhttp-ffi (~> 0.5.0)
64
+ http-cookie (1.0.6)
56
65
  domain_name (~> 0.5)
57
66
  http-form_data (2.3.0)
58
- httparty (0.21.0)
67
+ httparty (0.22.0)
68
+ csv
59
69
  mini_mime (>= 1.0.0)
60
70
  multi_xml (>= 0.5.2)
61
- i18n (1.14.1)
71
+ i18n (1.14.6)
62
72
  concurrent-ruby (~> 1.0)
63
- json (2.7.1)
73
+ json (2.7.2)
64
74
  language_server-protocol (3.17.0.3)
65
- llhttp-ffi (0.4.0)
75
+ llhttp-ffi (0.5.0)
66
76
  ffi-compiler (~> 1.0)
67
77
  rake (~> 13.0)
68
- method_source (1.0.0)
78
+ logger (1.6.1)
79
+ method_source (1.1.0)
69
80
  mini_mime (1.1.5)
70
- minitest (5.22.2)
71
- multi_xml (0.6.0)
72
- mutex_m (0.2.0)
73
- parallel (1.24.0)
74
- parser (3.3.0.5)
81
+ minitest (5.25.1)
82
+ multi_xml (0.7.1)
83
+ bigdecimal (~> 3.1)
84
+ parallel (1.25.1)
85
+ parser (3.3.3.0)
75
86
  ast (~> 2.4.1)
76
87
  racc
77
- proc_to_ast (0.1.0)
78
- coderay
88
+ proc_to_ast (0.2.0)
79
89
  parser
90
+ rouge
80
91
  unparser
81
92
  pry (0.14.2)
82
93
  coderay (~> 1.1)
83
94
  method_source (~> 1.0)
84
- public_suffix (5.0.4)
85
- racc (1.7.3)
95
+ public_suffix (5.1.1)
96
+ racc (1.8.0)
86
97
  rainbow (3.1.1)
87
- rake (13.1.0)
88
- regexp_parser (2.9.0)
98
+ rake (13.2.1)
99
+ regexp_parser (2.9.2)
89
100
  retriable (3.1.2)
90
- rexml (3.2.6)
101
+ rexml (3.3.0)
102
+ strscan
103
+ rouge (4.3.0)
91
104
  rspec (3.13.0)
92
105
  rspec-core (~> 3.13.0)
93
106
  rspec-expectations (~> 3.13.0)
94
107
  rspec-mocks (~> 3.13.0)
95
108
  rspec-core (3.13.0)
96
109
  rspec-support (~> 3.13.0)
97
- rspec-expectations (3.13.0)
110
+ rspec-expectations (3.13.1)
98
111
  diff-lcs (>= 1.2.0, < 2.0)
99
112
  rspec-support (~> 3.13.0)
100
- rspec-mocks (3.13.0)
113
+ rspec-mocks (3.13.1)
101
114
  diff-lcs (>= 1.2.0, < 2.0)
102
115
  rspec-support (~> 3.13.0)
103
- rspec-parameterized (1.0.0)
116
+ rspec-parameterized (1.0.2)
104
117
  rspec-parameterized-core (< 2)
105
118
  rspec-parameterized-table_syntax (< 2)
106
- rspec-parameterized-core (1.0.0)
119
+ rspec-parameterized-core (1.0.1)
107
120
  parser
108
- proc_to_ast
121
+ proc_to_ast (>= 0.2.0)
109
122
  rspec (>= 2.13, < 4)
110
123
  unparser
111
124
  rspec-parameterized-table_syntax (1.0.1)
112
125
  binding_of_caller
113
126
  rspec-parameterized-core (< 2)
114
127
  rspec-support (3.13.1)
115
- rubocop (1.60.2)
128
+ rubocop (1.64.1)
116
129
  json (~> 2.3)
117
130
  language_server-protocol (>= 3.17.0)
118
131
  parallel (~> 1.10)
@@ -120,22 +133,24 @@ GEM
120
133
  rainbow (>= 2.2.2, < 4.0)
121
134
  regexp_parser (>= 1.8, < 3.0)
122
135
  rexml (>= 3.2.5, < 4.0)
123
- rubocop-ast (>= 1.30.0, < 2.0)
136
+ rubocop-ast (>= 1.31.1, < 2.0)
124
137
  ruby-progressbar (~> 1.7)
125
138
  unicode-display_width (>= 2.4.0, < 3.0)
126
- rubocop-ast (1.30.0)
127
- parser (>= 3.2.1.0)
139
+ rubocop-ast (1.31.3)
140
+ parser (>= 3.3.1.0)
128
141
  ruby-progressbar (1.13.0)
129
- ruby2_keywords (0.0.5)
142
+ securerandom (0.3.2)
143
+ strscan (3.1.0)
130
144
  terminal-table (3.0.2)
131
145
  unicode-display_width (>= 1.1.1, < 3)
132
- timecop (0.9.8)
146
+ timecop (0.9.10)
133
147
  tzinfo (2.0.6)
134
148
  concurrent-ruby (~> 1.0)
135
149
  unicode-display_width (2.5.0)
136
- unparser (0.6.13)
150
+ unparser (0.6.15)
137
151
  diff-lcs (~> 1.3)
138
152
  parser (>= 3.3.0)
153
+ uri (1.0.2)
139
154
  vcr (6.2.0)
140
155
  version_sorter (2.3.0)
141
156
  webmock (3.18.1)
@@ -150,12 +165,13 @@ PLATFORMS
150
165
  ruby
151
166
  x86_64-darwin-20
152
167
  x86_64-darwin-22
168
+ x86_64-linux
153
169
 
154
170
  DEPENDENCIES
155
- activesupport (~> 7.1)
156
- gitlab (~> 4.19.0)
171
+ activesupport (~> 8.0)
172
+ gitlab (~> 5.1)
157
173
  gitlab-releases!
158
- http (~> 5.1.1)
174
+ http (~> 5.2.0)
159
175
  pry (~> 0.14.0)
160
176
  rake (~> 13.0)
161
177
  retriable (~> 3.1.2)
@@ -168,4 +184,4 @@ DEPENDENCIES
168
184
  webmock (~> 3.18.0)
169
185
 
170
186
  BUNDLED WITH
171
- 2.5.6
187
+ 2.5.13
data/README.md CHANGED
@@ -12,7 +12,7 @@ Library to interact with GitLab releases and versions. The information is fetche
12
12
  Gemfile:
13
13
 
14
14
  ```
15
- gem 'gitlab-releases', '~> 0.2.9'
15
+ gem 'gitlab-releases', '~> 1.0.1'
16
16
  ```
17
17
 
18
18
  Install:
@@ -90,6 +90,10 @@ To make use of it:
90
90
 
91
91
  Bug reports and feature requests are welcome on the [Delivery team tracker]. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/CODE_OF_CONDUCT.md).
92
92
 
93
+ ## Releases
94
+
95
+ See the [Releases documentation].
96
+
93
97
  ## License
94
98
 
95
99
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -99,3 +103,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
99
103
  Everyone interacting in the Releases project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/CODE_OF_CONDUCT.md).
100
104
 
101
105
  [Delivery team tracker]: https://gitlab.com/gitlab-com/gl-infra/delivery
106
+ [Releases documentation]: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/master/docs/releases.md
data/docs/releases.md ADDED
@@ -0,0 +1,42 @@
1
+ ## Releases
2
+
3
+ To create a new version:
4
+
5
+ 1. Adjust the [`VERSION` file] according to [Semantic Versioning].
6
+ 2. Add the [Changelog] entry.
7
+ 3. Update the [README] file with the new version.
8
+ 4. Run `bundle install` in this gem's directory on your local environment, and check in the change to Gemfile.lock.
9
+ 5. Create a merge request with the above changes and submit it to review. It is not required for the
10
+ merge request to be merged in order to continue with the next steps.
11
+ 6. On your local, build the new gem from the gemspec specification:
12
+
13
+ ```
14
+ gem build gitlab-releases.gemspec
15
+ ```
16
+
17
+ The above will generate a `gem` file like, `gitlab-releases-x.x.x.gem`, where `x.x.x` is the version
18
+ number set on the [`VERSION` file]. Now we can share the new gem version with the rest of the Ruby community.
19
+ For the next steps you will need to have an account on [RubyGems.org].
20
+
21
+ 7. Log into RubyGems
22
+
23
+ ```
24
+ gem signin
25
+ ```
26
+
27
+ 8. Push the gem file to RubyGems
28
+
29
+ ```
30
+ gem push gitlab-releases-x.x.x.gem
31
+ ````
32
+
33
+ 9. In a short time, the gem will be available for installation to anyone. Go to the the [gitlab-releases RubyGems.org site] to verify.
34
+ 10. Update the [`release-tools` repository] with the new gem version or you can also wait for the renovate bot to open an MR.
35
+
36
+ [`VERSION` file]: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/lib/gitlab_releases/version.rb
37
+ [Semantic Versioning]: https://semver.org/
38
+ [Changelog]: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/CHANGELOG.md
39
+ [README]: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/README.md
40
+ [RubyGems.org]: https://rubygems.org/
41
+ [gitlab-releases RubyGems.org site]: https://rubygems.org/gems/gitlab-releases
42
+ [`release-tools` repository]: https://gitlab.com/gitlab-org/release-tools
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GitlabReleases
4
- VERSION = "0.2.9"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-releases
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mayra Cabrera
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-18 00:00:00.000000000 Z
11
+ date: 2024-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,48 +16,48 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '7.1'
19
+ version: '8.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '7.1'
26
+ version: '8.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gitlab
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 4.19.0
33
+ version: '5.1'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 4.19.0
40
+ version: '5.1'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: http
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '5.1'
47
+ version: '5.2'
48
48
  - - "~>"
49
49
  - !ruby/object:Gem::Version
50
- version: 5.1.1
50
+ version: 5.2.0
51
51
  type: :runtime
52
52
  prerelease: false
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
55
  - - "~>"
56
56
  - !ruby/object:Gem::Version
57
- version: '5.1'
57
+ version: '5.2'
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: 5.1.1
60
+ version: 5.2.0
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: retriable
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -86,7 +86,7 @@ dependencies:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
88
  version: 2.3.0
89
- description:
89
+ description:
90
90
  email:
91
91
  - mcabrera@gitlab.com
92
92
  executables: []
@@ -103,6 +103,7 @@ files:
103
103
  - LICENSE.txt
104
104
  - README.md
105
105
  - Rakefile
106
+ - docs/releases.md
106
107
  - lib/gitlab_releases.rb
107
108
  - lib/gitlab_releases/date_calculator.rb
108
109
  - lib/gitlab_releases/patch_date_calculator.rb
@@ -120,7 +121,7 @@ metadata:
120
121
  homepage_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases
121
122
  source_code_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases
122
123
  changelog_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/CHANGELOG.md
123
- post_install_message:
124
+ post_install_message:
124
125
  rdoc_options: []
125
126
  require_paths:
126
127
  - lib
@@ -128,15 +129,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
128
129
  requirements:
129
130
  - - ">="
130
131
  - !ruby/object:Gem::Version
131
- version: 3.0.0
132
+ version: 3.3.0
132
133
  required_rubygems_version: !ruby/object:Gem::Requirement
133
134
  requirements:
134
135
  - - ">="
135
136
  - !ruby/object:Gem::Version
136
137
  version: '0'
137
138
  requirements: []
138
- rubygems_version: 3.2.3
139
- signing_key:
139
+ rubygems_version: 3.5.9
140
+ signing_key:
140
141
  specification_version: 4
141
142
  summary: Utilities for GitLab releases and versions
142
143
  test_files: []