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 4705f5b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,23 @@ 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"]
operating-system: [ubuntu-20.04, macos-10.15, macos-11]
php-versions: ["8.0", "8.1", "8.2"]
allow_failure: [false]
include:
- php-versions: 8.2
operating-system: ubuntu-20.04
allow_failure: true
- php-versions: 8.2
operating-system: macos-10.15
allow_failure: true
- php-versions: 8.2
operating-system: macos-11
allow_failure: true
name: Test PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
steps:
- name: Checkout
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 4705f5b

Please sign in to comment.