voxpupuli-release 5.0.2 → 5.1.0
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/.github/workflows/release.yml +6 -11
- data/.github/workflows/test.yml +3 -3
- data/CHANGELOG.md +9 -0
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e6505604aaa9c704322e61b5b6c9c0583316654ed3c458862a93ea5921da5f6
|
|
4
|
+
data.tar.gz: f5b04d7bff640c7a5e89b0412b8563fe809661adaba34c7e516ed73a37e65894
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0c39f32a2d5e2fe4f47ab483d3258c3284642ef1adb0d84e83cb4f9a8cac1a1c54c5eeb079b9b37151d7c2d04035e5811082c77a5a834793a6d342e97bd57df
|
|
7
|
+
data.tar.gz: e464e9a7a295b10f3f74787cf30c5f9d0581873a1aa936d87d51d0f61f691e7fc22af5f6502a2a997c994f26a3d1a4a336f3cf0a8ee7180c8dbd5d46a0f56689
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
permissions:
|
|
16
16
|
contents: write # clone repo and create release
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
19
19
|
- name: Install Ruby
|
|
20
20
|
uses: ruby/setup-ruby@v1
|
|
21
21
|
with:
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
shell: bash
|
|
25
25
|
run: gem build --verbose *.gemspec
|
|
26
26
|
- name: Upload gem to GitHub cache
|
|
27
|
-
uses: actions/upload-artifact@
|
|
27
|
+
uses: actions/upload-artifact@v6
|
|
28
28
|
with:
|
|
29
29
|
name: gem-artifact
|
|
30
30
|
path: '*.gem'
|
|
@@ -34,12 +34,7 @@ jobs:
|
|
|
34
34
|
shell: bash
|
|
35
35
|
env:
|
|
36
36
|
GH_TOKEN: ${{ github.token }}
|
|
37
|
-
run: gh release create ${{ github.ref_name }} --generate-notes
|
|
38
|
-
- name: Attach gem to GitHub Release
|
|
39
|
-
shell: bash
|
|
40
|
-
env:
|
|
41
|
-
GH_TOKEN: ${{ github.token }}
|
|
42
|
-
run: gh release upload ${{ github.ref_name }} *.gem
|
|
37
|
+
run: gh release create ${{ github.ref_name }} *.gem --generate-notes
|
|
43
38
|
|
|
44
39
|
release-to-github:
|
|
45
40
|
needs: build-release
|
|
@@ -49,7 +44,7 @@ jobs:
|
|
|
49
44
|
packages: write # publish to rubygems.pkg.github.com
|
|
50
45
|
steps:
|
|
51
46
|
- name: Download gem from GitHub cache
|
|
52
|
-
uses: actions/download-artifact@
|
|
47
|
+
uses: actions/download-artifact@v7
|
|
53
48
|
with:
|
|
54
49
|
name: gem-artifact
|
|
55
50
|
- name: Setup GitHub packages access
|
|
@@ -69,7 +64,7 @@ jobs:
|
|
|
69
64
|
id-token: write # rubygems.org authentication
|
|
70
65
|
steps:
|
|
71
66
|
- name: Download gem from GitHub cache
|
|
72
|
-
uses: actions/download-artifact@
|
|
67
|
+
uses: actions/download-artifact@v7
|
|
73
68
|
with:
|
|
74
69
|
name: gem-artifact
|
|
75
70
|
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
|
@@ -87,7 +82,7 @@ jobs:
|
|
|
87
82
|
- release-to-rubygems
|
|
88
83
|
steps:
|
|
89
84
|
- name: Download gem from GitHub cache
|
|
90
|
-
uses: actions/download-artifact@
|
|
85
|
+
uses: actions/download-artifact@v7
|
|
91
86
|
with:
|
|
92
87
|
name: gem-artifact
|
|
93
88
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
outputs:
|
|
20
20
|
ruby: ${{ steps.ruby.outputs.versions }}
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v6
|
|
23
23
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
24
24
|
uses: ruby/setup-ruby@v1
|
|
25
25
|
with:
|
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
- name: Run Rubocop
|
|
29
29
|
run: bundle exec rake rubocop
|
|
30
30
|
- id: ruby
|
|
31
|
-
uses: voxpupuli/ruby-version@
|
|
31
|
+
uses: voxpupuli/ruby-version@v2
|
|
32
32
|
test:
|
|
33
33
|
needs: rubocop_and_matrix
|
|
34
34
|
runs-on: ubuntu-24.04
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
|
39
39
|
name: Ruby ${{ matrix.ruby }}
|
|
40
40
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
41
|
+
- uses: actions/checkout@v6
|
|
42
42
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
43
43
|
uses: ruby/setup-ruby@v1
|
|
44
44
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [v5.1.0](https://github.com/voxpupuli/voxpupuli-release/tree/v5.1.0) (2026-01-05)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.2...v5.1.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Ruby 4.0 suppprt [\#105](https://github.com/voxpupuli/voxpupuli-release/pull/105) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
12
|
+
- Create the GitHub release with files in one step [\#107](https://github.com/voxpupuli/voxpupuli-release/pull/107) ([bwitt](https://github.com/bwitt))
|
|
13
|
+
|
|
5
14
|
## [v5.0.2](https://github.com/voxpupuli/voxpupuli-release/tree/v5.0.2) (2025-11-15)
|
|
6
15
|
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v5.0.1...v5.0.2)
|
data/voxpupuli-release.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voxpupuli-release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0
|
|
4
|
+
version: 5.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
@@ -123,14 +123,14 @@ dependencies:
|
|
|
123
123
|
requirements:
|
|
124
124
|
- - "~>"
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: 5.
|
|
126
|
+
version: 5.1.0
|
|
127
127
|
type: :development
|
|
128
128
|
prerelease: false
|
|
129
129
|
version_requirements: !ruby/object:Gem::Requirement
|
|
130
130
|
requirements:
|
|
131
131
|
- - "~>"
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
|
-
version: 5.
|
|
133
|
+
version: 5.1.0
|
|
134
134
|
email:
|
|
135
135
|
- voxpupuli@groups.io
|
|
136
136
|
executables: []
|
|
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
173
|
version: '0'
|
|
174
174
|
requirements: []
|
|
175
|
-
rubygems_version:
|
|
175
|
+
rubygems_version: 4.0.3
|
|
176
176
|
specification_version: 4
|
|
177
177
|
summary: Helpers for deploying Vox Pupuli modules
|
|
178
178
|
test_files: []
|