pumi 0.12.0 → 0.13.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: 8b94bfa1f39509cb293e414e9afa8647371f36ccf159309045b476c3b892c416
4
- data.tar.gz: 1706f3dc4095fd21d52f125940c70ff9c4b77606e660eac3ad80e699a3a143ba
3
+ metadata.gz: 4b0cfc831082d67eb960f4bef137ff0f6ae67ea60eee36aeaae1edeb7f8fc945
4
+ data.tar.gz: 7b3fb1bc47eb838c8aa75c0467bbc518e83f09a2473e75d2a70c53c76fdce492
5
5
  SHA512:
6
- metadata.gz: 5fab4bb86d6dcf0e9dcfd356fcab514404bee9a69e79709c445b453c6e2f434f2b8bebd65bb5420b5d4b6312231443b518e0aaf8e3ab031409df77767c75bb88
7
- data.tar.gz: 6105cca872aeb7313c17fea9c51bf8d784e2c3f0833ab09bd930d8ec5f786f76b45cfc5a00efbe8e5254afe65f7825a0110bfeacbc5280e10c5c46b8785958e5
6
+ metadata.gz: bb6d74bd6d8b7192c8da709c30e2be05591cfe80f06f703cd765a35058458dca553f31a3cd5ffe870f2a3875054162ad9b71fa10aac47ac38a3755b2d0f42912
7
+ data.tar.gz: aa3d20e100720654a696d03b82470954fe1fb2691e01e17cd93961a8a39eaff99dd0475931fc0ccae8de2f4ac26e02bb96265ec923039128922240facc0fee74
@@ -8,12 +8,11 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
 
10
10
  steps:
11
- - uses: actions/checkout@v2
11
+ - uses: actions/checkout@v3
12
12
 
13
13
  - name: Set up Ruby
14
- uses: actions/setup-ruby@v1
14
+ uses: ruby/setup-ruby@v1
15
15
  with:
16
- ruby-version: '3'
17
16
  bundler-cache: true
18
17
 
19
18
  - name: Install Dependencies
@@ -0,0 +1,38 @@
1
+ name: release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ release-please:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: google-github-actions/release-please-action@v3
13
+ id: release
14
+ with:
15
+ release-type: ruby
16
+ bump-minor-pre-major: true
17
+ version-file: "lib/pumi/version.rb"
18
+
19
+ - uses: actions/checkout@v3
20
+ if: ${{ steps.release.outputs.release_created }}
21
+
22
+ - uses: ruby/setup-ruby@v1
23
+ if: ${{ steps.release.outputs.release_created }}
24
+
25
+ - run: bundle install
26
+ if: ${{ steps.release.outputs.release_created }}
27
+
28
+ - name: publish gem
29
+ if: ${{ steps.release.outputs.release_created }}
30
+ run: |
31
+ mkdir -p $HOME/.gem
32
+ touch $HOME/.gem/credentials
33
+ chmod 0600 $HOME/.gem/credentials
34
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
35
+ gem build *.gemspec
36
+ gem push *.gem
37
+ env:
38
+ GEM_HOST_API_KEY: "${{secrets.GEM_HOST_API_KEY}}"
@@ -9,12 +9,10 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
 
11
11
  steps:
12
- - uses: actions/checkout@v2
12
+ - uses: actions/checkout@v3
13
13
 
14
14
  - name: Setup Ruby
15
- uses: actions/setup-ruby@v1
16
- with:
17
- ruby-version: '2.x'
15
+ uses: ruby/setup-ruby@v1
18
16
 
19
17
  - name: Fetch Data
20
18
  uses: ./.github/actions/fetch_data
@@ -26,8 +24,8 @@ jobs:
26
24
  uses: peter-evans/create-pull-request@v3
27
25
  with:
28
26
  token: ${{ secrets.REPO_TOKEN }}
29
- commit-message: "Update pumi data"
30
- title: "Update pumi data"
27
+ commit-message: "fix: Update data"
28
+ title: "fix: Update data"
31
29
  labels: "update_data"
32
30
  base: "master"
33
31
 
data/.tool-versions CHANGED
@@ -1,2 +1,2 @@
1
- ruby 3.0.3
1
+ ruby 3.2.0
2
2
  nodejs 16.13.1
data/CHANGELOG.md ADDED
@@ -0,0 +1,22 @@
1
+ # Changelog
2
+
3
+ ## [0.13.0](https://github.com/dwilkie/pumi/compare/v0.12.2...v0.13.0) (2023-02-06)
4
+
5
+
6
+ ### Features
7
+
8
+ * Update data ([#33](https://github.com/dwilkie/pumi/issues/33)) ([ab06018](https://github.com/dwilkie/pumi/commit/ab06018c19f1546c8d1c2c53b154623037301563))
9
+
10
+ ## [0.12.2](https://github.com/dwilkie/pumi/compare/v0.12.1...v0.12.2) (2023-02-01)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * release ([6a2da62](https://github.com/dwilkie/pumi/commit/6a2da6270e1c037ff99955b7efb4254bc6dd30ad))
16
+
17
+ ## [0.12.1](https://github.com/dwilkie/pumi/compare/v0.12.0...v0.12.1) (2023-02-01)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * Upgrade ruby ([#29](https://github.com/dwilkie/pumi/issues/29)) ([a5b6d45](https://github.com/dwilkie/pumi/commit/a5b6d4590e123d391d2eea3a1a2cc2a02d374a3b))