Skip to content

Commit 616d131

Browse files
committed
1.0.1
- Fixed an issue with phpunit.dist.xml where the file was not included in the package
1 parent d4e620f commit 616d131

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `Kirby X-Ray` will be documented in this file.
44

5+
## 1.0.1 - 2025-08-19
6+
7+
- Fixed an issue with phpunit.dist.xml where the file was not included in the package
8+
59
## 1.0.0 - 2025-08-19
610

711
- Initial release

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Kirby X-Ray provides a comprehensive overview of the content present on your site and individual pages, allowing you to inspect and evaluate them at a glance.",
44
"license": "MIT",
55
"type": "kirby-plugin",
6-
"version": "1.0.0",
6+
"version": "1.0.1",
77
"keywords": [
88
"xray",
99
"x-ray",

phpunit.dist.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
>
7+
<testsuites>
8+
<testsuite name="Test Suite">
9+
<directory suffix="Test.php">./tests</directory>
10+
</testsuite>
11+
</testsuites>
12+
<source>
13+
<include>
14+
<directory>src</directory>
15+
</include>
16+
</source>
17+
</phpunit>

0 commit comments

Comments
 (0)