Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 17, 2023
1 parent 197809d commit 0d9401b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ChangeLog-10.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes of the PHPUnit 10.1 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.

## [10.1.1] - 2023-MM-DD
## [10.1.1] - 2023-04-17

### Fixed

Expand Down Expand Up @@ -51,5 +51,5 @@ All notable changes of the PHPUnit 10.1 release series are documented in this fi
* `PHPUnit\TextUI\Configuration\Configuration::coverageExcludeDirectories()` (use `source()->excludeDirectories()` instead)
* `PHPUnit\TextUI\Configuration\Configuration::coverageExcludeFiles()` (use `source()->excludeFiles()` instead)

[10.1.1]: https://github.com/sebastianbergmann/phpunit/compare/10.1.0...10.1
[10.1.1]: https://github.com/sebastianbergmann/phpunit/compare/10.1.0...10.1.1
[10.1.0]: https://github.com/sebastianbergmann/phpunit/compare/10.0.19...10.1.0
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"myclabs/deep-copy": "^1.10.1",
"phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2",
"phpunit/php-code-coverage": "^10.1",
"phpunit/php-code-coverage": "^10.1.1",
"phpunit/php-file-iterator": "^4.0",
"phpunit/php-invoker": "^4.0",
"phpunit/php-text-template": "^3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static function id(): string
}

if (self::$version === '') {
self::$version = (new VersionId('10.1.0', dirname(__DIR__, 2)))->asString();
self::$version = (new VersionId('10.1.1', dirname(__DIR__, 2)))->asString();
}

return self::$version;
Expand Down

0 comments on commit 0d9401b

Please sign in to comment.