Skip to content

Commit 8cab111

Browse files
committed
Prepare 4.1.0
1 parent 6424bf7 commit 8cab111

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

.github/workflows/ci.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,6 @@ jobs:
2121
coverage: xdebug
2222
extensions: ${{ matrix.extension }}
2323
tools: composer:v2
24-
- uses: nick-invision/retry@v1
25-
with:
26-
timeout_minutes: 5
27-
max_attempts: 5
28-
command: composer update --no-interaction --no-progress --ignore-platform-req=php
29-
if: "matrix.php >= 8"
30-
- uses: nick-invision/retry@v1
31-
with:
32-
timeout_minutes: 5
33-
max_attempts: 5
34-
command: composer update --no-interaction --prefer-dist --no-progress
35-
if: "matrix.php < 8"
24+
- run: composer install --prefer-dist --no-interaction
3625
- run: vendor/bin/phpunit --coverage-text
26+
- run: vendor/bin/phpcs --standard=PSR12 --colors -n src tests

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
**4.1.0 (released 2020-11-26)**:
4+
5+
- Added PHP 8.0 support
6+
37
**4.0.0 (released 2019-04-03)**:
48

59
- Added UTF-8 support (thanks [@bonfante](https://github.com/ivanakimov/hashids.php/pull/128))

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"ext-mbstring": "*"
3030
},
3131
"require-dev": {
32-
"phpunit/phpunit": "^8.0 || ^9.3",
32+
"phpunit/phpunit": "^8.0 || ^9.4",
3333
"squizlabs/php_codesniffer": "^3.5"
3434
},
3535
"suggest": {
@@ -41,7 +41,7 @@
4141
},
4242
"extra": {
4343
"branch-alias": {
44-
"dev-master": "4.0-dev"
44+
"dev-master": "4.1-dev"
4545
}
4646
},
4747
"autoload": {

0 commit comments

Comments
 (0)