Skip to content

Commit

Permalink
Start development of next major version
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 22, 2023
1 parent 78c3b76 commit 7f753e9
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 110 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
name: CI

env:
COMPOSER_ROOT_VERSION: "10.1-dev"
COMPOSER_ROOT_VERSION: "11.0-dev"

jobs:
coding-guidelines:
Expand Down Expand Up @@ -70,7 +70,6 @@ jobs:
- windows-latest

php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
Expand Down
97 changes: 0 additions & 97 deletions ChangeLog-10.1.md

This file was deleted.

11 changes: 11 additions & 0 deletions ChangeLog-11.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# ChangeLog

All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [11.0.0] - 2024-02-02

### Removed

* This component is no longer supported on PHP 8.1

[11.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/10.1...main
23 changes: 12 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,30 @@
},
"config": {
"platform": {
"php": "8.1.0"
"php": "8.2.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"php": ">=8.2",
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
"nikic/php-parser": "^4.18 || ^5.0",
"phpunit/php-file-iterator": "^4.0",
"phpunit/php-text-template": "^3.0",
"sebastian/code-unit-reverse-lookup": "^3.0",
"sebastian/complexity": "^3.0",
"sebastian/environment": "^6.0",
"sebastian/lines-of-code": "^2.0",
"sebastian/version": "^4.0",
"phpunit/php-file-iterator": "^5.0",
"phpunit/php-text-template": "^4.0",
"sebastian/code-unit-reverse-lookup": "^4.0",
"sebastian/complexity": "^4.0",
"sebastian/environment": "^7.0",
"sebastian/lines-of-code": "^3.0",
"sebastian/version": "^5.0",
"theseer/tokenizer": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1"
"phpunit/phpunit": "^11.0"
},
"suggest": {
"ext-pcov": "PHP extension that provides line coverage",
Expand All @@ -63,7 +64,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "10.1-dev"
"dev-main": "11.0-dev"
}
}
}

0 comments on commit 7f753e9

Please sign in to comment.