librarianp 1.1.2 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 03324f329c31fdac36efd22059ab329088982e78574ccbad2b9e94e2b1dbe4bf
4
- data.tar.gz: 5cb5ec7c6f01dc7485baa2ea06bc6f153cc266b82b10a9c2ac0d7869d66617b8
3
+ metadata.gz: 10abe861195c981a1e682be34390259ac57ab9157fe828967ade322ac44a986c
4
+ data.tar.gz: eb74e53e3e2fd5d44a326960854d70689e390e8a0e09b117e675a677e31048fa
5
5
  SHA512:
6
- metadata.gz: 15ed4fd64d5185b430162dd31ecaeee2e081f370dd73eeedba1af2cfaa8328147ed15d8f39ca5313030b7508251c5d767d0cd16565ba6606c2771cedd1264995
7
- data.tar.gz: eca0a95250556946b61bac1428f862cd7dbd5d102ee1d7ee7ae9536aef2d7c3ae33dec8075d9826b7c26b92d7e3e4dd67488c7b228073628136e9bcc2d70e253
6
+ metadata.gz: 8998e712113c72db152eba519fddf406a74ed32415f58aac5f27f806a42f1b944d3c11fcccb8c514a855dcfed79850203f365ed6263cf3099a35ba36088b93ab
7
+ data.tar.gz: 14bf719654a5c1461bd1e46fe69c272b54c83bf39df468aee580a20da95f4cdbc4166bb8bc0ab3f5516302c0cd7788f90cb92103e9dc096a93fd77f18747f6fa
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ # raise PRs for gem updates
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ time: "13:00"
9
+ open-pull-requests-limit: 10
10
+
11
+ # Maintain dependencies for GitHub Actions
12
+ - package-ecosystem: github-actions
13
+ directory: "/"
14
+ schedule:
15
+ interval: daily
16
+ time: "13:00"
17
+ open-pull-requests-limit: 10
@@ -0,0 +1,41 @@
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
+ - bugfix
29
+
30
+ - title: Documentation Updates 📚
31
+ labels:
32
+ - documentation
33
+ - docs
34
+
35
+ - title: Dependency Updates ⬆️
36
+ labels:
37
+ - dependencies
38
+
39
+ - title: Other Changes
40
+ labels:
41
+ - "*"
@@ -1,32 +1,106 @@
1
- name: Release
1
+ ---
2
+ name: Gem Release
2
3
 
3
4
  on:
4
5
  push:
5
6
  tags:
6
7
  - '*'
7
8
 
9
+ permissions: {}
10
+
8
11
  jobs:
9
- release:
10
- runs-on: ubuntu-latest
12
+ build-release:
13
+ # Prevent releases from forked repositories
11
14
  if: github.repository_owner == 'voxpupuli'
15
+ name: Build the gem
16
+ runs-on: ubuntu-24.04
12
17
  steps:
13
- - uses: actions/checkout@v2
14
- - name: Install Ruby 3.0
18
+ - uses: actions/checkout@v6
19
+ - name: Install Ruby
15
20
  uses: ruby/setup-ruby@v1
16
21
  with:
17
- ruby-version: '3.0'
18
- env:
19
- BUNDLE_WITHOUT: release
22
+ ruby-version: 'ruby'
20
23
  - name: Build gem
21
- run: gem build *.gemspec
24
+ shell: bash
25
+ run: gem build --verbose *.gemspec
26
+ - name: Upload gem to GitHub cache
27
+ uses: actions/upload-artifact@v6
28
+ with:
29
+ name: gem-artifact
30
+ path: '*.gem'
31
+ retention-days: 1
32
+ compression-level: 0
33
+
34
+ create-github-release:
35
+ needs: build-release
36
+ name: Create GitHub release
37
+ runs-on: ubuntu-24.04
38
+ permissions:
39
+ contents: write # clone repo and create release
40
+ steps:
41
+ - name: Download gem from GitHub cache
42
+ uses: actions/download-artifact@v7
43
+ with:
44
+ name: gem-artifact
45
+ - name: Create Release
46
+ shell: bash
47
+ env:
48
+ GH_TOKEN: ${{ github.token }}
49
+ run: gh release create --repo ${{ github.repository }} ${{ github.ref_name }} --generate-notes *.gem
50
+
51
+ release-to-github:
52
+ needs: build-release
53
+ name: Release to GitHub
54
+ runs-on: ubuntu-24.04
55
+ permissions:
56
+ packages: write # publish to rubygems.pkg.github.com
57
+ steps:
58
+ - name: Download gem from GitHub cache
59
+ uses: actions/download-artifact@v7
60
+ with:
61
+ name: gem-artifact
62
+ - name: Publish gem to GitHub packages
63
+ run: gem push --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
64
+ env:
65
+ GEM_HOST_API_KEY: ${{ secrets.GITHUB_TOKEN }}
66
+
67
+ release-to-rubygems:
68
+ needs: build-release
69
+ name: Release gem to rubygems.org
70
+ runs-on: ubuntu-24.04
71
+ environment: release # recommended by rubygems.org
72
+ permissions:
73
+ id-token: write # rubygems.org authentication
74
+ steps:
75
+ - name: Download gem from GitHub cache
76
+ uses: actions/download-artifact@v7
77
+ with:
78
+ name: gem-artifact
79
+ - uses: rubygems/configure-rubygems-credentials@v1.0.0
22
80
  - name: Publish gem to rubygems.org
81
+ shell: bash
23
82
  run: gem push *.gem
24
- env:
25
- GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
26
- - name: Setup GitHub packages access
83
+
84
+ release-verification:
85
+ name: Check that all releases are done
86
+ runs-on: ubuntu-24.04
87
+ permissions:
88
+ contents: read # minimal permissions that we have to grant
89
+ needs:
90
+ - create-github-release
91
+ - release-to-github
92
+ - release-to-rubygems
93
+ steps:
94
+ - name: Download gem from GitHub cache
95
+ uses: actions/download-artifact@v7
96
+ with:
97
+ name: gem-artifact
98
+ - name: Install Ruby
99
+ uses: ruby/setup-ruby@v1
100
+ with:
101
+ ruby-version: 'ruby'
102
+ - name: Wait for release to propagate
103
+ shell: bash
27
104
  run: |
28
- mkdir -p ~/.gem
29
- echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
30
- chmod 0600 ~/.gem/credentials
31
- - name: Publish gem to GitHub packages
32
- run: gem push --key github --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
105
+ gem install rubygems-await
106
+ gem await *.gem
@@ -1,12 +1,18 @@
1
+ ---
1
2
  name: Test
2
3
 
3
4
  on:
4
- - pull_request
5
- - push
5
+ pull_request: {}
6
+ push:
7
+ branches:
8
+ - master
9
+
10
+ permissions:
11
+ contents: read
6
12
 
7
13
  jobs:
8
14
  test:
9
- runs-on: ubuntu-latest
15
+ runs-on: ubuntu-24.04
10
16
  strategy:
11
17
  fail-fast: false
12
18
  matrix:
@@ -16,6 +22,11 @@ jobs:
16
22
  - "2.6"
17
23
  - "2.7"
18
24
  - "3.0"
25
+ - "3.1"
26
+ - "3.2"
27
+ - "3.3"
28
+ - "3.4"
29
+ - "4.0"
19
30
  steps:
20
31
  - uses: actions/checkout@v2
21
32
  - name: Install Ruby ${{ matrix.ruby }}
@@ -27,3 +38,15 @@ jobs:
27
38
  run: bundle exec rake spec
28
39
  - name: Verify gem builds
29
40
  run: gem build *.gemspec
41
+
42
+ tests:
43
+ if: always()
44
+ needs:
45
+ - test
46
+ runs-on: ubuntu-24.04
47
+ name: Test suite
48
+ steps:
49
+ - name: Decide whether the needed jobs succeeded or failed
50
+ uses: re-actors/alls-green@release/v1
51
+ with:
52
+ jobs: ${{ toJSON(needs) }}
data/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [v1.2.0](https://github.com/voxpupuli/librarian/tree/v1.2.0) (2026-01-05)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/librarian/compare/v1.1.2...v1.2.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Add Ruby3.1-4.0 support [\#24](https://github.com/voxpupuli/librarian/pull/24) ([bastelfreak](https://github.com/bastelfreak))
12
+
13
+ **Merged pull requests:**
14
+
15
+ - CI: Add dependabot configuration [\#25](https://github.com/voxpupuli/librarian/pull/25) ([bastelfreak](https://github.com/bastelfreak))
16
+ - Add Vox Pupuli CI defaults [\#23](https://github.com/voxpupuli/librarian/pull/23) ([bastelfreak](https://github.com/bastelfreak))
17
+
5
18
  ## [v1.1.2](https://github.com/voxpupuli/librarian/tree/v1.1.2) (2022-08-02)
6
19
 
7
20
  [Full Changelog](https://github.com/voxpupuli/librarian/compare/v1.1.1...v1.1.2)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.2.0
data/librarianp.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = '>= 2.4', '< 4'
20
+ gem.required_ruby_version = '>= 2.4', '< 5'
21
21
 
22
22
  gem.add_dependency "thor", "~> 1.0"
23
23
 
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: librarianp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Feldblum
8
8
  - Carlos Sanchez
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2022-08-02 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: thor
@@ -89,6 +88,8 @@ executables: []
89
88
  extensions: []
90
89
  extra_rdoc_files: []
91
90
  files:
91
+ - ".github/dependabot.yml"
92
+ - ".github/release.yml"
92
93
  - ".github/workflows/release.yml"
93
94
  - ".github/workflows/test.yml"
94
95
  - ".gitignore"
@@ -195,7 +196,6 @@ homepage: https://github.com/voxpupuli/librarian
195
196
  licenses:
196
197
  - MIT
197
198
  metadata: {}
198
- post_install_message:
199
199
  rdoc_options: []
200
200
  require_paths:
201
201
  - lib
@@ -206,15 +206,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
206
206
  version: '2.4'
207
207
  - - "<"
208
208
  - !ruby/object:Gem::Version
209
- version: '4'
209
+ version: '5'
210
210
  required_rubygems_version: !ruby/object:Gem::Requirement
211
211
  requirements:
212
212
  - - ">="
213
213
  - !ruby/object:Gem::Version
214
214
  version: '0'
215
215
  requirements: []
216
- rubygems_version: 3.2.33
217
- signing_key:
216
+ rubygems_version: 4.0.3
218
217
  specification_version: 4
219
218
  summary: A Framework for Bundlers.
220
219
  test_files: