piwigo-api 0.5.8 → 0.5.9

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: 608967b560f96ebac045082ad64519c8cd8b6edf25d326f595e71628180e860b
4
- data.tar.gz: c5656010a6b30019c95794d429576a0e8a4f95adbb0a05ef6c6e164c3ecca0e1
3
+ metadata.gz: 3fa77269c47c5c3de051986ac36f97764f5e766f14b7ab428401229a67ab2a78
4
+ data.tar.gz: e8a53e47119346c003463835983b2ce287c42a272f36d4aa143017f77559891d
5
5
  SHA512:
6
- metadata.gz: 32b960c4c36aa093590dd37e03aba30b82630ba6337ce4cce2c523b5fadabac5e8b05afc427c7a4065a83bfe3ce5a70dda71746de96195e46dda234cead79861
7
- data.tar.gz: 3dce2f6adf09ff7606a0e3d32bc33c709389b1a37694597a8912c563ae70a905fe001d086b124accbc65cabc2bb53226af8556660cde677cf42c30d5fb8dc143
6
+ metadata.gz: ef857c2959b2f5090f0ccf3f3ffe3e9b2ff70a8a7e45ab96ea2bbcbf81ece8b9379b67fcc6f54ad0f78c24b6eb29f92314463604b2cb754a20d4cb123eac777a
7
+ data.tar.gz: 0347faaf186d2e005a86fbb598b35f79d373026f123adc9e1fcfd5f8f164fa94983e2aec0628d8748f42931eeb2af62dfd72b1f48dec8e1f3d6198121155886e
@@ -3,8 +3,6 @@ name: Ruby Gem
3
3
  on:
4
4
  push:
5
5
  branches: [ master ]
6
- pull_request:
7
- branches: [ master ]
8
6
 
9
7
  jobs:
10
8
  build:
@@ -1,20 +1,26 @@
1
+
1
2
  name: Ruby
2
3
 
3
- on: [push]
4
+ on:
5
+ push:
6
+ branches: [ master ]
7
+ pull_request:
8
+ branches: [ master ]
4
9
 
5
10
  jobs:
6
- build:
11
+ test:
7
12
 
8
13
  runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ ruby-version: ['2.6', '2.7', '3.0']
9
17
 
10
18
  steps:
11
- - uses: actions/checkout@v1
12
- - name: Set up Ruby 2.6
13
- uses: actions/setup-ruby@v1
19
+ - uses: actions/checkout@v2
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
14
22
  with:
15
- ruby-version: 2.6.x
16
- - name: Build and test with Rake
17
- run: |
18
- gem install bundler
19
- bundle install --jobs 4 --retry 3
20
- bundle exec rake
23
+ ruby-version: ${{ matrix.ruby-version }}
24
+ bundler-cache: true
25
+ - name: Run tests
26
+ run: bundle exec rake
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
+ 0.5.9 - 2021-07-13
8
+ - Update version to fix github actions
9
+
7
10
  0.5.8 - 2021-07-13
8
11
  - Update dependencies address CVE-2021-32740
9
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- piwigo-api (0.5.7)
4
+ piwigo-api (0.5.9)
5
5
  exifr (~> 1.3)
6
6
  http (~> 5.0)
7
7
  logger (~> 1.4)
@@ -1,3 +1,3 @@
1
1
  module Piwigo
2
- VERSION = '0.5.8'.freeze
2
+ VERSION = '0.5.9'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: piwigo-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.8
4
+ version: 0.5.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Gilbert