Skip to content

Commit

Permalink
Start development of php-code-coverage 12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 7, 2024
1 parent c4ba7f2 commit 6c4fdfc
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 74 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: "11.0.x-dev"
COMPOSER_ROOT_VERSION: "12.0.x-dev"

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

php-version:
- "8.2"
- "8.3"
- "8.4"

Expand Down
67 changes: 0 additions & 67 deletions ChangeLog-11.0.md

This file was deleted.

11 changes: 11 additions & 0 deletions ChangeLog-12.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.

## [12.0.0] - 2025-02-07

### Removed

* This component is no longer supported on PHP 8.2

[12.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0...main
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@
},
"config": {
"platform": {
"php": "8.2.0"
"php": "8.3.0"
},
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"php": ">=8.3",
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
Expand All @@ -44,7 +45,7 @@
"theseer/tokenizer": "^1.2.3"
},
"require-dev": {
"phpunit/phpunit": "^11.4.1"
"phpunit/phpunit": "^12.0-dev"
},
"suggest": {
"ext-pcov": "PHP extension that provides line coverage",
Expand All @@ -62,7 +63,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "11.0.x-dev"
"dev-main": "12.0.x-dev"
}
}
}
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ final class Version
public static function id(): string
{
if (self::$version === '') {
self::$version = (new VersionId('11.0.7', dirname(__DIR__)))->asString();
self::$version = (new VersionId('12.0', dirname(__DIR__)))->asString();
}

return self::$version;
Expand Down

0 comments on commit 6c4fdfc

Please sign in to comment.