pheme 4.0.15 → 4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55dba8498ea4e27e8725d819a9ecb085182e568a9b7f978ee8108224ce2f6b75
4
- data.tar.gz: b563ecb37ec9cd3b57e0e53f6f1145c0871661dbe87d005428cab70b3d15ea0f
3
+ metadata.gz: dd6e1925adecf772b7b5ca09fdde45dbaaba4256cb80bcb65906dd18cd0286fe
4
+ data.tar.gz: 229444299168954592038df99574cb3166bdf856107f5aea42f0b007c80c9514
5
5
  SHA512:
6
- metadata.gz: 1be078789a00dd493a1493aabb6efd4a308210d254cbeb4dffdec8a25e99ded101e9f6801de70ce80a9eb2d570caaee4dca9bbfe22dcce3a5fa8da58ceb0e0a5
7
- data.tar.gz: 59d82218e150ceb46f3f2e0c9de6445d866ec7e351115d7542774452766ff03efe9aebabe4366701dd968e417ef8feeec865119f9abdae2e750184a5e3f5abf8
6
+ metadata.gz: 251c43cca6385824f8726e2437fbf003b7834976de3c7f3d2c22fecac36ec25253dada0c6b60e87015b5909f88511ce26c948477fec07050e9b1d37b1a7c0cb8
7
+ data.tar.gz: 83d1da2a382a02e558cc05669fd8dea1800ae14823232b72ce94a7085dff27b5ea3274ad94bfb2f31181cb4e3780e788c53ebfa11ddb87d0910d58cbcdeec518
@@ -10,19 +10,38 @@ jobs:
10
10
  build:
11
11
  name: Build
12
12
  runs-on: ubuntu-20.04
13
+ strategy:
14
+ matrix:
15
+ ruby-version: [2.7.5, 3.0.3, 3.1.0]
13
16
  steps:
14
17
  - uses: actions/checkout@v2
15
18
  with:
16
19
  fetch-depth: 0
17
- - uses: ruby/setup-ruby@v1
20
+ - name: Set up Ruby ${{ matrix.ruby-version }}
21
+ uses: ruby/setup-ruby@v1
18
22
  with:
19
23
  bundler-cache: true
24
+ ruby-version: ${{ matrix.ruby-version }}
20
25
  - name: Lint
21
26
  run: bundle exec rubocop
22
27
  - name: Test
23
28
  run: bundle exec rspec
29
+
30
+ # Separate `release` job from `build`, as we only want release to be run once
31
+ # and not run for each ruby version in the matrix:
32
+ release:
33
+ name: Release
34
+ if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
35
+ needs: build
36
+ runs-on: ubuntu-20.04
37
+ steps:
38
+ - uses: actions/checkout@v2
39
+ with:
40
+ fetch-depth: 0
41
+ - uses: ruby/setup-ruby@v1
42
+ with:
43
+ bundler-cache: true
24
44
  - name: Release the gem
25
- if: ${{ github.ref == 'refs/heads/main' }}
26
45
  run: |
27
46
  mkdir -p ~/.gem
28
47
  cat << EOF > ~/.gem/credentials
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.3
1
+ 2.7.5
data/CHANGELOG.md CHANGED
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## 4.1.0 - 2021-12-31
8
+ - Add Ruby 3 support
9
+
7
10
  ## 4.0.15 - 2021-12-03
8
11
  ### Changed
9
12
  - Updated dependencies
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pheme (4.0.15)
4
+ pheme (4.1.0)
5
5
  activesupport (>= 4)
6
6
  aws-sdk-sns (~> 1.1)
7
7
  aws-sdk-sqs (~> 1.3)
@@ -19,17 +19,17 @@ GEM
19
19
  zeitwerk (~> 2.3)
20
20
  ast (2.4.2)
21
21
  aws-eventstream (1.2.0)
22
- aws-partitions (1.539.0)
23
- aws-sdk-core (3.124.0)
22
+ aws-partitions (1.543.0)
23
+ aws-sdk-core (3.125.0)
24
24
  aws-eventstream (~> 1, >= 1.0.2)
25
25
  aws-partitions (~> 1, >= 1.525.0)
26
26
  aws-sigv4 (~> 1.1)
27
27
  jmespath (~> 1.0)
28
- aws-sdk-sns (1.49.0)
29
- aws-sdk-core (~> 3, >= 3.122.0)
28
+ aws-sdk-sns (1.50.0)
29
+ aws-sdk-core (~> 3, >= 3.125.0)
30
30
  aws-sigv4 (~> 1.1)
31
- aws-sdk-sqs (1.48.0)
32
- aws-sdk-core (~> 3, >= 3.122.0)
31
+ aws-sdk-sqs (1.49.0)
32
+ aws-sdk-core (~> 3, >= 3.125.0)
33
33
  aws-sigv4 (~> 1.1)
34
34
  aws-sigv4 (1.4.0)
35
35
  aws-eventstream (~> 1, >= 1.0.2)
data/lib/pheme/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pheme
2
- VERSION = '4.0.15'.freeze
2
+ VERSION = '4.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pheme
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.15
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Graham
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-03 00:00:00.000000000 Z
11
+ date: 2022-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport