voxpupuli-release 1.0.2 → 1.3.0

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: cd34e3cd419b87cfb19a24f4864473c4018dd02594e171e966404c514f74ba98
4
- data.tar.gz: b77e8abe88d2b651b649c9de819fb563f045a2b4b9e551f4d65cf07cfd975248
3
+ metadata.gz: 606f972169119f56967f77a587da869e0ce334f7c2a965641d0e5bdabcd18955
4
+ data.tar.gz: ce8bf749396849ba1716025a052c28c2b8aeb5798b7b97b10efac0772dc537df
5
5
  SHA512:
6
- metadata.gz: 45ff0d43d171f05b659fa410c6629b2234a36a11baced64eb80d6e8dc4ec600e0033713679a23555284e7b4113d82aeddf1cd6e8c3a33f2d09c9cbedf6cdeaed
7
- data.tar.gz: ec03423dcc641516f36c4eb1e3f8ff9e92d66b44f80d2d854e23a735ab421b4614ed485d3d52906a7db6ea5252b008dc46e9f8dfab4ed2543fde695353b2530e
6
+ metadata.gz: 19bf5446634ce655c31632e5b0e24b0b70256cf90d9f980a150a8ec78f3d8bf1f8e02797b704c76305ed3aca7477805286f9bd28718697becb25e759eaa26001
7
+ data.tar.gz: 9fd53026ed507a108ce7d1104eb908183c2403f104852af989c388f50d59cdb28422c698fba879788fd158a5e453fa57caa0b5215abd9e3290807b5760baf928
@@ -1,8 +1,9 @@
1
1
  name: Release
2
2
 
3
3
  on:
4
- create:
5
- ref_type: tag
4
+ push:
5
+ tags:
6
+ - '*'
6
7
 
7
8
  jobs:
8
9
  release:
@@ -0,0 +1,33 @@
1
+ name: Test
2
+
3
+ on:
4
+ - pull_request
5
+ - push
6
+
7
+ env:
8
+ BUNDLE_WITHOUT: release
9
+
10
+ jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby:
17
+ - "2.4"
18
+ - "2.5"
19
+ - "2.6"
20
+ - "2.7"
21
+ - "3.0"
22
+ name: Ruby ${{ matrix.ruby }}
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - name: Install Ruby ${{ matrix.ruby }}
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+ - name: Run tests
31
+ run: bundle exec rake --rakefile Rakefile_ci -T | grep release
32
+ - name: Verify gem builds
33
+ run: gem build *.gemspec
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .vendor/
3
3
  vendor/
4
4
  Gemfile.lock
5
+ .dccache
data/CHANGELOG.md CHANGED
@@ -2,51 +2,100 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [v1.0.2](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.0.2) (2021-07-30)
5
+ ## [v1.3.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.3.0) (2021-12-08)
6
6
 
7
- [Full Changelog](https://github.com/voxpupuli/voxpupuli-release-gem/compare/v1.0.1...v1.0.2)
7
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.1...v1.3.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Allow no 'v' in release version [\#41](https://github.com/voxpupuli/voxpupuli-release/pull/41) ([smortex](https://github.com/smortex))
12
+ - Validate REFERENCE.md if it exists [\#39](https://github.com/voxpupuli/voxpupuli-release/pull/39) ([bastelfreak](https://github.com/bastelfreak))
13
+
14
+ ## [v1.2.1](https://github.com/voxpupuli/voxpupuli-release/tree/v1.2.1) (2021-10-29)
15
+
16
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.0...v1.2.1)
17
+
18
+ between the 1.2.0 and 1.2.1 release renamed the repository from voxpupuli-release-gem to voxpupuli-release. The previous name was inconsistent with the gem name and that blocked releases to github packages. The 1.2.1 release only happens to get a release to github packages. The code is identical to 1.2.0.
19
+
20
+ **Closed issues:**
21
+
22
+ - Rename the repository from voxpupuli-release-gem to voxpupuli-release [\#35](https://github.com/voxpupuli/voxpupuli-release/issues/35)
23
+
24
+ ## [v1.2.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.2.0) (2021-10-28)
25
+
26
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.1.0...v1.2.0)
27
+
28
+ **Implemented enhancements:**
29
+
30
+ - Cleanup references to Travis CI in rake tasks [\#32](https://github.com/voxpupuli/voxpupuli-release/pull/32) ([genebean](https://github.com/genebean))
31
+
32
+ **Fixed bugs:**
33
+
34
+ - Fix syntax highlighting & add warning to travis\_release [\#33](https://github.com/voxpupuli/voxpupuli-release/pull/33) ([ekohl](https://github.com/ekohl))
35
+
36
+ **Merged pull requests:**
37
+
38
+ - Enable basic gem testing [\#31](https://github.com/voxpupuli/voxpupuli-release/pull/31) ([bastelfreak](https://github.com/bastelfreak))
39
+ - gemspec: switch to https URLs [\#30](https://github.com/voxpupuli/voxpupuli-release/pull/30) ([bastelfreak](https://github.com/bastelfreak))
40
+
41
+ ## [v1.1.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.1.0) (2021-10-15)
42
+
43
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.2...v1.1.0)
44
+
45
+ **Implemented enhancements:**
46
+
47
+ - Add `github_release` alias for `travis_release` task [\#28](https://github.com/voxpupuli/voxpupuli-release/pull/28) ([bastelfreak](https://github.com/bastelfreak))
48
+
49
+ **Fixed bugs:**
50
+
51
+ - fix wrong syntax in GitHub actions [\#27](https://github.com/voxpupuli/voxpupuli-release/pull/27) ([bastelfreak](https://github.com/bastelfreak))
52
+
53
+ ## [v1.0.2](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.2) (2021-07-30)
54
+
55
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.1...v1.0.2)
8
56
 
9
57
  **Fixed bugs:**
10
58
 
11
- - directly load blacksmitch rake tasks [\#25](https://github.com/voxpupuli/voxpupuli-release-gem/pull/25) ([bastelfreak](https://github.com/bastelfreak))
59
+ - directly load blacksmith rake tasks [\#25](https://github.com/voxpupuli/voxpupuli-release/pull/25) ([bastelfreak](https://github.com/bastelfreak))
12
60
 
13
61
  **Merged pull requests:**
14
62
 
15
- - Convert from Travis to Github Actions [\#24](https://github.com/voxpupuli/voxpupuli-release-gem/pull/24) ([ekohl](https://github.com/ekohl))
63
+ - Update release workflow + docs / Release 1.0.2 [\#26](https://github.com/voxpupuli/voxpupuli-release/pull/26) ([bastelfreak](https://github.com/bastelfreak))
64
+ - Convert from Travis to Github Actions [\#24](https://github.com/voxpupuli/voxpupuli-release/pull/24) ([ekohl](https://github.com/ekohl))
16
65
 
17
- ## [v1.0.1](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.0.1) (2019-09-02)
66
+ ## [v1.0.1](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.1) (2019-09-02)
18
67
 
19
- [Full Changelog](https://github.com/voxpupuli/voxpupuli-release-gem/compare/v1.0.0...v1.0.1)
68
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.0.0...v1.0.1)
20
69
 
21
70
  **Fixed bugs:**
22
71
 
23
- - set a message pattern for new releases [\#22](https://github.com/voxpupuli/voxpupuli-release-gem/pull/22) ([bastelfreak](https://github.com/bastelfreak))
72
+ - set a message pattern for new releases [\#22](https://github.com/voxpupuli/voxpupuli-release/pull/22) ([bastelfreak](https://github.com/bastelfreak))
24
73
 
25
- ## [v1.0.0](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.0.0) (2019-08-31)
74
+ ## [v1.0.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.0.0) (2019-08-31)
26
75
 
27
- [Full Changelog](https://github.com/voxpupuli/voxpupuli-release-gem/compare/f45adfe1cdb31bcc289fa4b80ac392235a00ffc6...v1.0.0)
76
+ [Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/f45adfe1cdb31bcc289fa4b80ac392235a00ffc6...v1.0.0)
28
77
 
29
78
  **Implemented enhancements:**
30
79
 
31
- - sign tags with gpg [\#20](https://github.com/voxpupuli/voxpupuli-release-gem/pull/20) ([bastelfreak](https://github.com/bastelfreak))
80
+ - sign tags with gpg [\#20](https://github.com/voxpupuli/voxpupuli-release/pull/20) ([bastelfreak](https://github.com/bastelfreak))
32
81
 
33
82
  **Closed issues:**
34
83
 
35
- - expand travis\_release [\#2](https://github.com/voxpupuli/voxpupuli-release-gem/issues/2)
36
- - this gem should be renamed [\#1](https://github.com/voxpupuli/voxpupuli-release-gem/issues/1)
84
+ - expand travis\_release [\#2](https://github.com/voxpupuli/voxpupuli-release/issues/2)
85
+ - this gem should be renamed [\#1](https://github.com/voxpupuli/voxpupuli-release/issues/1)
37
86
 
38
87
  **Merged pull requests:**
39
88
 
40
- - Use has\_version\_tag? from puppet-blacksmith [\#16](https://github.com/voxpupuli/voxpupuli-release-gem/pull/16) ([ekohl](https://github.com/ekohl))
41
- - Proper pre-release version string [\#15](https://github.com/voxpupuli/voxpupuli-release-gem/pull/15) ([rnelson0](https://github.com/rnelson0))
42
- - Release candidate 0.4.0-rc0 [\#14](https://github.com/voxpupuli/voxpupuli-release-gem/pull/14) ([rnelson0](https://github.com/rnelson0))
43
- - Expand acceptable changelog release format [\#12](https://github.com/voxpupuli/voxpupuli-release-gem/pull/12) ([rnelson0](https://github.com/rnelson0))
44
- - dont expect whitespace before release number [\#10](https://github.com/voxpupuli/voxpupuli-release-gem/pull/10) ([bastelfreak](https://github.com/bastelfreak))
45
- - Describe how to cut a release [\#9](https://github.com/voxpupuli/voxpupuli-release-gem/pull/9) ([rnelson0](https://github.com/rnelson0))
46
- - fix\(changelog\) make changelog checking more flexible [\#8](https://github.com/voxpupuli/voxpupuli-release-gem/pull/8) ([igalic](https://github.com/igalic))
47
- - fix\(loading\) complete renaming by correctly moving files into subdirs [\#7](https://github.com/voxpupuli/voxpupuli-release-gem/pull/7) ([igalic](https://github.com/igalic))
48
- - feat\(release\) bump RC version rather than patch [\#6](https://github.com/voxpupuli/voxpupuli-release-gem/pull/6) ([igalic](https://github.com/igalic))
49
- - chore \(rename\) Give our gem a more sensible name [\#5](https://github.com/voxpupuli/voxpupuli-release-gem/pull/5) ([igalic](https://github.com/igalic))
89
+ - Use has\_version\_tag? from puppet-blacksmith [\#16](https://github.com/voxpupuli/voxpupuli-release/pull/16) ([ekohl](https://github.com/ekohl))
90
+ - Proper pre-release version string [\#15](https://github.com/voxpupuli/voxpupuli-release/pull/15) ([rnelson0](https://github.com/rnelson0))
91
+ - Release candidate 0.4.0-rc0 [\#14](https://github.com/voxpupuli/voxpupuli-release/pull/14) ([rnelson0](https://github.com/rnelson0))
92
+ - Expand acceptable changelog release format [\#12](https://github.com/voxpupuli/voxpupuli-release/pull/12) ([rnelson0](https://github.com/rnelson0))
93
+ - dont expect whitespace before release number [\#10](https://github.com/voxpupuli/voxpupuli-release/pull/10) ([bastelfreak](https://github.com/bastelfreak))
94
+ - Describe how to cut a release [\#9](https://github.com/voxpupuli/voxpupuli-release/pull/9) ([rnelson0](https://github.com/rnelson0))
95
+ - fix\(changelog\) make changelog checking more flexible [\#8](https://github.com/voxpupuli/voxpupuli-release/pull/8) ([igalic](https://github.com/igalic))
96
+ - fix\(loading\) complete renaming by correctly moving files into subdirs [\#7](https://github.com/voxpupuli/voxpupuli-release/pull/7) ([igalic](https://github.com/igalic))
97
+ - feat\(release\) bump RC version rather than patch [\#6](https://github.com/voxpupuli/voxpupuli-release/pull/6) ([igalic](https://github.com/igalic))
98
+ - chore \(rename\) Give our gem a more sensible name [\#5](https://github.com/voxpupuli/voxpupuli-release/pull/5) ([igalic](https://github.com/igalic))
50
99
 
51
100
 
52
101
 
data/Gemfile CHANGED
@@ -2,6 +2,6 @@ source ENV['GEM_SOURCE'] || 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- group :release do
6
- gem 'github_changelog_generator', '>= 1.16.1', :require => false
5
+ group :release, optional: true do
6
+ gem 'github_changelog_generator', '>= 1.16.1', :require => false if RUBY_VERSION >= '2.5.0'
7
7
  end
data/README.md CHANGED
@@ -1,16 +1,17 @@
1
- # Voxpupuli Release Gem
1
+ # Vox Pupuli Release Gem
2
2
 
3
- [![License](https://img.shields.io/github/license/voxpupuli/voxpupuli-release-gem.svg)](https://github.com/voxpupuli/voxpupuli-release-gem/blob/master/LICENSE)
4
- [![Release](https://github.com/voxpupuli/voxpupuli-release-gem/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/voxpupuli-release-gem/actions/workflows/release.yml)
3
+ [![License](https://img.shields.io/github/license/voxpupuli/voxpupuli-release.svg)](https://github.com/voxpupuli/voxpupuli-releasem/blob/master/LICENSE)
4
+ [![Release](https://github.com/voxpupuli/voxpupuli-release/actions/workflows/release.yml/badge.svg)](https://github.com/voxpupuli/voxpupuli-release/actions/workflows/release.yml)
5
5
  [![RubyGem Version](https://img.shields.io/gem/v/voxpupuli-release.svg)](https://rubygems.org/gems/voxpupuli-release)
6
6
  [![RubyGem Downloads](https://img.shields.io/gem/dt/voxpupuli-release.svg)](https://rubygems.org/gems/voxpupuli-release)
7
7
 
8
8
  This is a helper Gem for the Vox Pupuli release workflow. This Gem currently serves only to encapsulate common `rake` tasks related to releasing modules.
9
9
 
10
- # Usage
10
+ ## Usage
11
+
11
12
  Add the `voxpupuli-release` Gem to your `Gemfile`:
12
13
 
13
- ```
14
+ ```ruby
14
15
  gem 'voxpupuli-release', git: 'https://github.com/voxpupuli/voxpupuli-release-gem'
15
16
  ```
16
17
 
@@ -22,8 +23,8 @@ require 'voxpupuli-release'
22
23
 
23
24
  To cut a new release of your module, ensure the `metadata.json` reflects the proper version. Also ensure that the `CHANGELOG.md` has a note about the release and that it actually is named Release or release, some old modules refer to it as Version, which won't work. Lastly check that no tag exists with that version number (format `v#.#.#`), and then run:
24
25
 
25
- ```
26
- bundle exec rake travis_release
26
+ ```plain
27
+ bundle exec rake release
27
28
  ```
28
29
 
29
30
  ## License
@@ -33,9 +34,10 @@ This gem is licensed under the Apache-2 license.
33
34
  ## Release information
34
35
 
35
36
  To make a new release, please do:
36
- * update the version in lib/voxpupuli/release/version.rb
37
+
38
+ * update the version in `lib/voxpupuli/release/version.rb`
37
39
  * Install gems with `bundle install --with release --path .vendor`
38
40
  * generate the changelog with `bundle exec rake changelog`
39
41
  * Check if the new version matches the closed issues/PRs in the changelog
40
42
  * Create a PR with it
41
- * After it got merged, push a tag. GitHub actions will do the actual release to rubygems and GitHub Packages
43
+ * After it got merged, push a tag. GitHub Actions will do the actual release to Rubygems and GitHub Packages
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ begin
16
16
  config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
17
17
  config.exclude_labels = %w{duplicate question invalid wontfix wont-fix skip-changelog}
18
18
  config.user = 'voxpupuli'
19
- config.project = 'voxpupuli-release-gem'
19
+ config.project = 'voxpupuli-release'
20
20
  end
21
21
  rescue LoadError
22
22
  end
data/Rakefile_ci ADDED
@@ -0,0 +1,3 @@
1
+ # dummy rakefile that enables us to use the tasks within this repo
2
+ # use it: bundle exec rake --rakefile Rakefile_ci
3
+ require 'voxpupuli/release'
@@ -1,8 +1,7 @@
1
1
  require 'puppet_blacksmith/rake_tasks'
2
2
 
3
- desc 'release new version through Travis-ci'
4
- task "travis_release" do
5
-
3
+ desc 'Release via GitHub Actions'
4
+ task :release do
6
5
  Blacksmith::RakeTask.new do |t|
7
6
  t.build = false # do not build the module nor push it to the Forge
8
7
  t.tag_sign = true # sign release with gpg
@@ -15,6 +14,8 @@ task "travis_release" do
15
14
  raise "Refusing to release an RC or build-release (#{v}).\n" +
16
15
  "Please set a semver *release* version." unless v =~ /^\d+\.\d+.\d+$/
17
16
 
17
+ # validate that the REFERENCE.md is up2date, if it exists
18
+ Rake::Task['strings:validate:reference'].invoke if File.exist?('REFERENCE.md')
18
19
  Rake::Task[:check_changelog].invoke
19
20
  # do a "manual" module:release (clean, tag, bump, commit, push tags)
20
21
  Rake::Task["module:clean"].invoke
@@ -28,11 +29,17 @@ task "travis_release" do
28
29
  ENV['BLACKSMITH_FULL_VERSION'] = v_new
29
30
  Rake::Task["module:bump:full"].invoke
30
31
 
31
- # push it out, and let travis do the release:
32
+ # push it out, and let GitHub Actions do the release:
32
33
  g.commit_modulefile!(v_new)
33
34
  g.push!
34
35
  end
35
36
 
37
+ desc 'Depreciated: use the "release" task instead'
38
+ task "travis_release" do
39
+ STDERR.puts "Depreciated: use the 'release' task instead"
40
+ Rake::Task['release'].invoke
41
+ end
42
+
36
43
  desc 'Check Changelog.'
37
44
  task :check_changelog do
38
45
  v = Blacksmith::Modulefile.new.version
@@ -40,7 +47,8 @@ task :check_changelog do
40
47
  #
41
48
  # ## 2016-11-20 Release 4.0.2
42
49
  # ## [v4.0.3-rc0](https://github.com/voxpupuli/puppet-r10k/tree/v4.0.3-rc0) (2016-12-13)
43
- if File.readlines('CHANGELOG.md').grep( /^(#.+[Rr]eleas.+#{Regexp.escape(v)}|## \[v#{Regexp.escape(v)}\])/ ).size == 0
50
+ # ## [2.1.0](https://github.com/opus-codium/puppet-odoo/tree/2.1.0) (2021-12-02)
51
+ if File.readlines('CHANGELOG.md').grep( /^(#.+[Rr]eleas.+#{Regexp.escape(v)}|## \[v?#{Regexp.escape(v)}\])/ ).empty?
44
52
  fail "Unable to find a CHANGELOG.md entry for the #{v} release."
45
53
  end
46
54
  end
@@ -1,5 +1,5 @@
1
1
  module Voxpupuli
2
2
  module Release
3
- VERSION = '1.0.2'
3
+ VERSION = '1.3.0'
4
4
  end
5
5
  end
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = Voxpupuli::Release::VERSION
8
8
  s.authors = ['Vox Pupuli']
9
9
  s.email = ['voxpupuli@groups.io']
10
- s.homepage = 'http://github.com/voxpupuli/voxpupuli-release-gem'
10
+ s.homepage = 'https://github.com/voxpupuli/voxpupuli-release'
11
11
  s.summary = 'Helpers for deploying Vox Pupuli modules'
12
12
  s.description = s.summary
13
13
  s.licenses = 'Apache-2.0'
@@ -19,4 +19,5 @@ Gem::Specification.new do |s|
19
19
  # Runtime dependencies, but also probably dependencies of requiring projects
20
20
  s.add_runtime_dependency 'rake'
21
21
  s.add_runtime_dependency 'puppet-blacksmith', '>= 4.0.0'
22
+ s.add_runtime_dependency 'puppet-strings', '>= 2.9.0'
22
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voxpupuli-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 4.0.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: puppet-strings
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 2.9.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 2.9.0
41
55
  description: Helpers for deploying Vox Pupuli modules
42
56
  email:
43
57
  - voxpupuli@groups.io
@@ -47,17 +61,19 @@ extra_rdoc_files: []
47
61
  files:
48
62
  - ".github/dependabot.yml"
49
63
  - ".github/workflows/release.yml"
64
+ - ".github/workflows/test.yml"
50
65
  - ".gitignore"
51
66
  - CHANGELOG.md
52
67
  - Gemfile
53
68
  - LICENSE
54
69
  - README.md
55
70
  - Rakefile
71
+ - Rakefile_ci
56
72
  - lib/voxpupuli/release.rb
57
73
  - lib/voxpupuli/release/rake_tasks.rb
58
74
  - lib/voxpupuli/release/version.rb
59
75
  - voxpupuli-release.gemspec
60
- homepage: http://github.com/voxpupuli/voxpupuli-release-gem
76
+ homepage: https://github.com/voxpupuli/voxpupuli-release
61
77
  licenses:
62
78
  - Apache-2.0
63
79
  metadata: {}
@@ -76,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
92
  - !ruby/object:Gem::Version
77
93
  version: '0'
78
94
  requirements: []
79
- rubygems_version: 3.2.22
95
+ rubygems_version: 3.2.32
80
96
  signing_key:
81
97
  specification_version: 4
82
98
  summary: Helpers for deploying Vox Pupuli modules