Skip to content

Commit 770b936

Browse files
committed
8.0.0
1 parent f28c1a6 commit 770b936

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,32 @@ on:
1313
jobs:
1414
test:
1515
runs-on: ${{ matrix.operating-system }}
16+
continue-on-error: ${{ matrix.allow-failure }}
1617
strategy:
1718
max-parallel: 15
1819
matrix:
19-
operating-system: [ubuntu-20.04, macOS-10.15]
20-
php-versions: ["7.3", "7.4", "8.0", "8.1", "8.2"]
21-
name: Test PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }}
20+
operating-system: [ubuntu-20.04, macos-10.15, macos-11]
21+
php-version: ["8.0", "8.1"]
22+
allow-failure: [false]
23+
include:
24+
- php-version: 8.2
25+
operating-system: ubuntu-20.04
26+
allow-failure: true
27+
- php-version: 8.2
28+
operating-system: macos-10.15
29+
allow-failure: true
30+
- php-version: 8.2
31+
operating-system: macos-11
32+
allow-failure: true
33+
name: Test PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
2234
steps:
2335
- name: Checkout
2436
uses: actions/checkout@v2
2537

2638
- name: Setup PHP
2739
uses: shivammathur/setup-php@master
2840
with:
29-
php-version: ${{ matrix.php-versions }}
41+
php-version: ${{ matrix.php-version }}
3042
extensions: apcu, mbstring, pcov
3143
ini-values: apc.enabled=1, apc.enable_cli=1, opcache.enable=1, opcache.enable_cli=1, opcache.jit=disable
3244
coverage: pcov

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Next
1+
# 8.0.0
22

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

56
# 7.0.0
67

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Note that, unlike APCu and Opcache, the file status cache is per-process rather
1818

1919
## Compatibility
2020

21+
- CacheTool 8.x works with PHP `>=8.0`
22+
- CacheTool 7.x works with PHP `>=7.3`
2123
- CacheTool 6.x works with PHP `>=7.3`
2224
- CacheTool 5.x works with PHP `>=7.2`
2325
- CacheTool 4.x works with PHP `>=7.1`

0 commit comments

Comments
 (0)