From 2ee9c199a2a07ef864b78d2f7ad440cd018685d2 Mon Sep 17 00:00:00 2001 From: Samuel Gordalina Date: Fri, 10 Dec 2021 15:47:26 -0800 Subject: [PATCH] 8.0.0 --- .github/workflows/ci.yml | 14 ++++++++++---- CHANGELOG.md | 3 ++- README.md | 2 ++ 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43aec2a..99417ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,12 +13,18 @@ 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, macos-10.15, macos-11] + allow-failure: true + name: Test PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 @@ -26,7 +32,7 @@ jobs: - 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 323580f..8a83218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 45300ae..5892e51 100644 --- a/README.md +++ b/README.md @@ -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`