From 8cab111f78e0bd9c76953b082919fc9e251761be Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Thu, 26 Nov 2020 20:24:33 +0100 Subject: [PATCH] Prepare 4.1.0 --- .github/workflows/ci.yml | 14 ++------------ CHANGELOG.md | 4 ++++ composer.json | 4 ++-- 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0052127..256790a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,16 +21,6 @@ jobs: coverage: xdebug extensions: ${{ matrix.extension }} tools: composer:v2 - - uses: nick-invision/retry@v1 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --no-interaction --no-progress --ignore-platform-req=php - if: "matrix.php >= 8" - - uses: nick-invision/retry@v1 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --no-interaction --prefer-dist --no-progress - if: "matrix.php < 8" + - run: composer install --prefer-dist --no-interaction - run: vendor/bin/phpunit --coverage-text + - run: vendor/bin/phpcs --standard=PSR12 --colors -n src tests diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a6d31..5bc9dff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +**4.1.0 (released 2020-11-26)**: + +- Added PHP 8.0 support + **4.0.0 (released 2019-04-03)**: - Added UTF-8 support (thanks [@bonfante](https://github.com/ivanakimov/hashids.php/pull/128)) diff --git a/composer.json b/composer.json index b1ab736..f8d9a6b 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "ext-mbstring": "*" }, "require-dev": { - "phpunit/phpunit": "^8.0 || ^9.3", + "phpunit/phpunit": "^8.0 || ^9.4", "squizlabs/php_codesniffer": "^3.5" }, "suggest": { @@ -41,7 +41,7 @@ }, "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "4.1-dev" } }, "autoload": {