Skip to content

Commit

Permalink
Merge pull request #532 from ergebnis/fix/php7.4
Browse files Browse the repository at this point in the history
Fix: Drop support for PHP 7.4
  • Loading branch information
localheinz authored Nov 25, 2022
2 parents 6203bfd + 1a93ab8 commit ec53be8
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 22 deletions.
13 changes: 5 additions & 8 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@ branches:
required_approving_review_count: 1
required_status_checks:
contexts:
- "Code Coverage (7.4, locked)"
- "Coding Standards (7.4, locked)"
- "Dependency Analysis (7.4, locked)"
- "Mutation Tests (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Tests (7.4, highest)"
- "Tests (7.4, locked)"
- "Tests (7.4, lowest)"
- "Code Coverage (8.0, locked)"
- "Coding Standards (8.0, locked)"
- "Dependency Analysis (8.0, locked)"
- "Mutation Tests (8.0, locked)"
- "Static Code Analysis (8.0, locked)"
- "Tests (8.0, highest)"
- "Tests (8.0, locked)"
- "Tests (8.0, lowest)"
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down Expand Up @@ -264,7 +264,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`2.5.0...main`][2.5.0...main].
For a full diff see [`2.6.0...main`][2.6.0...main].

## [`2.6.0`][2.6.0]

For a full diff see [`2.5.0...2.6.0`][2.5.0...2.6.0].

### Changed

* Dropped support for PHP 7.4 ([#532]), by [@localheinz]

## [`2.5.0`][2.5.0]

Expand Down Expand Up @@ -126,7 +134,8 @@ For a full diff see [`36912f6...1.0.0`][36912f6...1.0.0].
[2.2.0...2.3.0]: https://github.com/ergebnis/clock/compare/2.2.0...2.3.0
[2.3.0...2.4.0]: https://github.com/ergebnis/clock/compare/2.3.0...2.4.0
[2.4.0...2.5.0]: https://github.com/ergebnis/clock/compare/2.4.0...2.5.0
[2.5.0...main]: https://github.com/ergebnis/clock/compare/2.5.0...main
[2.5.0...main]: https://github.com/ergebnis/clock/compare/2.5.0...2.6.0
[2.6.0...main]: https://github.com/ergebnis/clock/compare/2.6.0...main

[#1]: https://github.com/ergebnis/clock/pull/1
[#2]: https://github.com/ergebnis/clock/pull/2
Expand All @@ -139,6 +148,7 @@ For a full diff see [`36912f6...1.0.0`][36912f6...1.0.0].
[#387]: https://github.com/ergebnis/clock/pull/387
[#400]: https://github.com/ergebnis/clock/pull/400
[#531]: https://github.com/ergebnis/clock/pull/531
[#532]: https://github.com/ergebnis/clock/pull/532

[@ergebnis]: https://github.com/ergebnis
[@localheinz]: https://github.com/localheinz
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"source": "https://github.com/ergebnis/clock"
},
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.0",
"psr/clock": "^1.0.0"
},
"require-dev": {
Expand Down Expand Up @@ -51,7 +51,7 @@
"infection/extension-installer": true
},
"platform": {
"php": "7.4.25"
"php": "8.0.24"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ec53be8

Please sign in to comment.