create_github_release 2.1.5 → 2.1.6
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '099b71eefbbcdffbc33313a98aee782e190514c8d508cb9fbbbd28d84f5daece'
|
|
4
|
+
data.tar.gz: 17f488332848e7f934429abb363fbc81c3278c441761ced61b9e23b923ea26f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2957fac857c30126571c9281606671c6c967993ecd02579289ba1a487574007f74b91928bb8f1fe3833e8810ae071ff77439bfa7853bf6993b8efa406c4f5968
|
|
7
|
+
data.tar.gz: b9ce0e44bc55bad8d7e34e25223ee9a40e242d2ed23447e4c6a8df5c00ad6bbad029edf283f595e1e9d8898edb4e7cb13ec65c58c9b4809e5e9acf58727a84e2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.1.6](https://github.com/main-branch/create_github_release/compare/v2.1.5...v2.1.6) (2026-04-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
* **dependencies:** Update dependencies for all GitHub Actions workflows ([8acc8f4](https://github.com/main-branch/create_github_release/commit/8acc8f4baa6be0bffad6cd09d1370076ee7c0f68))
|
|
14
|
+
* **rubocop:** Fix rubocop offenses from new cops ([9d22002](https://github.com/main-branch/create_github_release/commit/9d2200280b9249abce81c1c4d7f8efe0aa5fc92f))
|
|
15
|
+
|
|
8
16
|
## [2.1.5](https://github.com/main-branch/create_github_release/compare/v2.1.4...v2.1.5) (2025-04-18)
|
|
9
17
|
|
|
10
18
|
|
data/exe/revert-github-release
CHANGED
|
@@ -108,7 +108,7 @@ module CreateGithubRelease
|
|
|
108
108
|
def front_matter
|
|
109
109
|
return '' if front_matter_start == front_matter_end
|
|
110
110
|
|
|
111
|
-
lines[front_matter_start..front_matter_end - 1].join("\n")
|
|
111
|
+
lines[front_matter_start..(front_matter_end - 1)].join("\n")
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
# The body of the existing changelog
|
|
@@ -168,7 +168,7 @@ module CreateGithubRelease
|
|
|
168
168
|
def body
|
|
169
169
|
return '' if body_start == body_end
|
|
170
170
|
|
|
171
|
-
lines[body_start..body_end - 1].join("\n")
|
|
171
|
+
lines[body_start..(body_end - 1)].join("\n")
|
|
172
172
|
end
|
|
173
173
|
|
|
174
174
|
# The changelog before the new release is added
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: create_github_release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James
|
|
@@ -316,8 +316,8 @@ metadata:
|
|
|
316
316
|
allowed_push_host: https://rubygems.org
|
|
317
317
|
homepage_uri: https://github.com/main-branch/create_github_release
|
|
318
318
|
source_code_uri: https://github.com/main-branch/create_github_release
|
|
319
|
-
documentation_uri: https://rubydoc.info/gems/create_github_release/2.1.
|
|
320
|
-
changelog_uri: https://rubydoc.info/gems/create_github_release/2.1.
|
|
319
|
+
documentation_uri: https://rubydoc.info/gems/create_github_release/2.1.6
|
|
320
|
+
changelog_uri: https://rubydoc.info/gems/create_github_release/2.1.6/file/CHANGELOG.md
|
|
321
321
|
rubygems_mfa_required: 'true'
|
|
322
322
|
rdoc_options: []
|
|
323
323
|
require_paths:
|
|
@@ -335,7 +335,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
335
335
|
requirements:
|
|
336
336
|
- 'Platform: Mac, Linux, or Windows'
|
|
337
337
|
- 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
|
|
338
|
-
rubygems_version:
|
|
338
|
+
rubygems_version: 4.0.6
|
|
339
339
|
specification_version: 4
|
|
340
340
|
summary: A script to create a GitHub release for a Ruby Gem
|
|
341
341
|
test_files: []
|