Skip to content

Commit fc2c016

Browse files
fix: Update CHANGELOG.md date for version 0.2.1 and format phpunit.xml.dist. (#21)
1 parent e1a23e0 commit fc2c016

File tree

3 files changed

+29
-25
lines changed

3 files changed

+29
-25
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ name: build
2020
jobs:
2121
phpunit:
2222
uses: php-forge/actions/.github/workflows/phpunit.yml@main
23+
secrets:
24+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2325
with:
2426
composer-command: |
2527
composer require yiisoft/yii2:22.0.x-dev --prefer-dist --no-progress --no-interaction --no-scripts --ansi
@@ -30,6 +32,8 @@ jobs:
3032
['8.1', '8.2', '8.3', '8.4']
3133
phpunit-compatibility:
3234
uses: php-forge/actions/.github/workflows/phpunit.yml@main
35+
secrets:
36+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3337
with:
3438
concurrency-group: compatibility-${{ github.workflow }}-${{ github.ref }}
3539
extensions: intl

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Change Log
22

3-
## 0.2.1 Under development
3+
## 0.2.1 June 03, 2025
44

55
- Bug #20: Update licenses, docs, configuration, and reflection/type logic (@terabytesoftw)
6+
- Bug #21: Update `CHANGELOG.md` date for version `0.2.1` and format `phpunit.xml.dist` (@terabytesoftw)
67

78
## 0.2.0 June 02, 2025
89

phpunit.xml.dist

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
5-
bootstrap="tests/bootstrap.php"
6-
cacheDirectory=".phpunit.cache"
7-
colors="true"
8-
executionOrder="depends,defects"
9-
failOnRisky="true"
10-
failOnWarning="true"
11-
stopOnFailure="false"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
bootstrap="tests/bootstrap.php"
6+
cacheDirectory=".phpunit.cache"
7+
colors="true"
8+
executionOrder="depends,defects"
9+
failOnRisky="true"
10+
failOnWarning="true"
11+
stopOnFailure="false"
1212
>
13-
<testsuites>
14-
<testsuite name="PHPstan">
15-
<directory>tests</directory>
16-
</testsuite>
17-
</testsuites>
18-
19-
<source>
20-
<include>
21-
<directory suffix=".php">./src</directory>
22-
</include>
23-
<exclude>
24-
<directory suffix=".php">./src/reflection</directory>
25-
<directory suffix=".php">./src/type</directory>
26-
</exclude>
27-
</source>
13+
<testsuites>
14+
<testsuite name="PHPstan">
15+
<directory>tests</directory>
16+
</testsuite>
17+
</testsuites>
18+
<source>
19+
<include>
20+
<directory suffix=".php">./src</directory>
21+
</include>
22+
<exclude>
23+
<directory suffix=".php">./src/reflection</directory>
24+
<directory suffix=".php">./src/type</directory>
25+
</exclude>
26+
</source>
2827
</phpunit>

0 commit comments

Comments
 (0)