Skip to content

Commit

Permalink
8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gordalina committed Dec 11, 2021
1 parent f28c1a6 commit 697f144
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,32 @@ on:
jobs:
test:
runs-on: ${{ matrix.operating-system }}
continue-on-error: ${{ matrix.allow-failure }}
strategy:
max-parallel: 15
matrix:
operating-system: [ubuntu-20.04, macOS-10.15]
php-versions: ["7.3", "7.4", "8.0", "8.1", "8.2"]
name: Test PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
operating-system: [ubuntu-20.04, macos-10.15, macos-11]
php-version: ["8.0", "8.1"]
allow-failure: [false]
include:
- php-version: 8.2
operating-system: ubuntu-20.04
allow-failure: true
- php-version: 8.2
operating-system: macos-10.15
allow-failure: true
- php-version: 8.2
operating-system: macos-11
allow-failure: true
name: Test PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
php-version: ${{ matrix.php-version }}
extensions: apcu, mbstring, pcov
ini-values: apc.enabled=1, apc.enable_cli=1, opcache.enable=1, opcache.enable_cli=1, opcache.jit=disable
coverage: pcov
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Next
# 8.0.0

- [#190](https://github.com/gordalina/cachetool/pull/190) Use server timezone when displaying dates (@LeoShivas)
- Removed support for PHP 7.x

# 7.0.0

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Note that, unlike APCu and Opcache, the file status cache is per-process rather

## Compatibility

- CacheTool 8.x works with PHP `>=8.0`
- CacheTool 7.x works with PHP `>=7.3`
- CacheTool 6.x works with PHP `>=7.3`
- CacheTool 5.x works with PHP `>=7.2`
- CacheTool 4.x works with PHP `>=7.1`
Expand Down

0 comments on commit 697f144

Please sign in to comment.