Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
afragen committed Apr 26, 2022
2 parents c5c58f5 + 392d032 commit a981dd9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wp-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ jobs:
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-18.04]
php-versions: ['7.3', '7.4', '8.0', '8.1']
operating-system: [ubuntu-latest]
php-versions: ['7.4', '8.0', '8.1']
phpunit-versions: ['9.5.20']
include:
- php-versions: '7.2'
phpunit-versions: '7.5.20'
operating-system: ubuntu-18.04
- php-versions: '7.3'
phpunit-versions: '9.5.20'
operating-system: 'ubuntu-18.04'
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[unreleased]

#### 2.0.1 / 2022-04-05
* add missing `name` for remote install

#### 2.0.0 / 2022-04-24
* require PHP 7.2+

Expand Down
2 changes: 1 addition & 1 deletion git-updater-gist.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin Name: Git Updater - Gist
* Plugin URI: https://github.com/afragen/git-updater-gist
* Description: Add GitHub Gist hosted repositories to the Git Updater plugin.
* Version: 2.0.0
* Version: 2.0.1
* Author: Andy Fragen
* License: MIT
* Network: true
Expand Down
1 change: 1 addition & 0 deletions src/Gist/Gist_API.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ private function get_remote_gist_install( $headers ) {
$this->type->owner = $headers['owner'];
$this->type->slug = $headers['repo'];
$this->type->gist_id = $headers['repo'];
$this->type->name = $headers['repo'];
$this->type->branch = 'master';

$response = $this->api( '/gists/:gist_id' );
Expand Down

0 comments on commit a981dd9

Please sign in to comment.