ra10ke 4.3.0 → 4.4.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/release.yml +40 -0
- data/.github/workflows/release.yml +18 -0
- data/CHANGELOG.md +8 -0
- data/lib/ra10ke/version.rb +1 -1
- data/ra10ke.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a3ef455bedc72f4a8efb127b1f3160deee1dfe81c2c38de72ada47bfc4ca8c3
|
4
|
+
data.tar.gz: b94450b0e414f8dbba9239138cc0f979d636b8261dd0032f3fef86039a4133db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 890afd26cc69393d81da69a4498e239eaa05dbbac969822884ebf5f63f200581f3303e09a4f91815c3ec8af3deb1ce42b2e37544cb1b9e4a1b10a583f3176e39
|
7
|
+
data.tar.gz: 6e18e3e79fa83491b68370e90953730a1d7106eff069024b9a84b33e0d2b5990197c3c9580fd895adb03b3012a45aad1a4709d7890af4873b5d15358c434f592
|
data/.github/release.yml
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
|
3
|
+
|
4
|
+
changelog:
|
5
|
+
exclude:
|
6
|
+
labels:
|
7
|
+
- duplicate
|
8
|
+
- invalid
|
9
|
+
- modulesync
|
10
|
+
- question
|
11
|
+
- skip-changelog
|
12
|
+
- wont-fix
|
13
|
+
- wontfix
|
14
|
+
- github_actions
|
15
|
+
|
16
|
+
categories:
|
17
|
+
- title: Breaking Changes 🛠
|
18
|
+
labels:
|
19
|
+
- backwards-incompatible
|
20
|
+
|
21
|
+
- title: New Features 🎉
|
22
|
+
labels:
|
23
|
+
- enhancement
|
24
|
+
|
25
|
+
- title: Bug Fixes 🐛
|
26
|
+
labels:
|
27
|
+
- bug
|
28
|
+
|
29
|
+
- title: Documentation Updates 📚
|
30
|
+
labels:
|
31
|
+
- documentation
|
32
|
+
- docs
|
33
|
+
|
34
|
+
- title: Dependency Updates ⬆️
|
35
|
+
labels:
|
36
|
+
- dependencies
|
37
|
+
|
38
|
+
- title: Other Changes
|
39
|
+
labels:
|
40
|
+
- "*"
|
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
name: Release
|
2
3
|
|
3
4
|
on:
|
@@ -9,8 +10,15 @@ jobs:
|
|
9
10
|
release:
|
10
11
|
runs-on: ubuntu-latest
|
11
12
|
if: github.repository_owner == 'voxpupuli'
|
13
|
+
|
14
|
+
permissions:
|
15
|
+
contents: write
|
16
|
+
packages: write
|
17
|
+
|
12
18
|
steps:
|
13
19
|
- uses: actions/checkout@v4
|
20
|
+
with:
|
21
|
+
fetch-depth: 0
|
14
22
|
- name: Install Ruby 3.3
|
15
23
|
uses: ruby/setup-ruby@v1
|
16
24
|
with:
|
@@ -30,3 +38,13 @@ jobs:
|
|
30
38
|
chmod 0600 ~/.gem/credentials
|
31
39
|
- name: Publish gem to GitHub packages
|
32
40
|
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
41
|
+
- name: Create Release Page
|
42
|
+
shell: bash
|
43
|
+
env:
|
44
|
+
GH_TOKEN: ${{ github.token }}
|
45
|
+
run: gh release create ${{ github.ref_name }} --generate-notes
|
46
|
+
- name: Attach gem to GitHub Release
|
47
|
+
shell: bash
|
48
|
+
env:
|
49
|
+
GH_TOKEN: ${{ github.token }}
|
50
|
+
run: gh release upload ${{ github.ref_name }} *.gem
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [v4.4.0](https://github.com/voxpupuli/ra10ke/tree/v4.4.0) (2025-06-08)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/ra10ke/compare/v4.3.0...v4.4.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- Update voxpupuli-rubocop requirement from ~\> 4.0.0 to ~\> 4.1.0 [\#126](https://github.com/voxpupuli/ra10ke/pull/126) ([dependabot[bot]](https://github.com/apps/dependabot))
|
12
|
+
|
5
13
|
## [v4.3.0](https://github.com/voxpupuli/ra10ke/tree/v4.3.0) (2025-05-13)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/ra10ke/compare/v4.2.0...v4.3.0)
|
data/lib/ra10ke/version.rb
CHANGED
data/ra10ke.gemspec
CHANGED
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.add_dependency 'solve', '~> 4.0', '>= 4.0.4'
|
25
25
|
spec.add_dependency 'table_print', '~> 1.5.6'
|
26
26
|
spec.add_development_dependency 'rspec', '~> 3.6'
|
27
|
-
spec.add_development_dependency 'voxpupuli-rubocop', '~> 4.
|
27
|
+
spec.add_development_dependency 'voxpupuli-rubocop', '~> 4.1.0'
|
28
28
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ra10ke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Theo Chatzimichos
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-
|
12
|
+
date: 2025-06-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: git
|
@@ -153,14 +153,14 @@ dependencies:
|
|
153
153
|
requirements:
|
154
154
|
- - "~>"
|
155
155
|
- !ruby/object:Gem::Version
|
156
|
-
version: 4.
|
156
|
+
version: 4.1.0
|
157
157
|
type: :development
|
158
158
|
prerelease: false
|
159
159
|
version_requirements: !ruby/object:Gem::Requirement
|
160
160
|
requirements:
|
161
161
|
- - "~>"
|
162
162
|
- !ruby/object:Gem::Version
|
163
|
-
version: 4.
|
163
|
+
version: 4.1.0
|
164
164
|
description: R10K and Puppetfile rake tasks
|
165
165
|
email:
|
166
166
|
- voxpupuli@groups.io
|
@@ -169,6 +169,7 @@ extensions: []
|
|
169
169
|
extra_rdoc_files: []
|
170
170
|
files:
|
171
171
|
- ".github/dependabot.yml"
|
172
|
+
- ".github/release.yml"
|
172
173
|
- ".github/workflows/release.yml"
|
173
174
|
- ".github/workflows/test.yml"
|
174
175
|
- ".gitignore"
|