From 19c13267f01acca90aff30f1233cad20dbd9b2e9 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann <sb@sebastian-bergmann.de> Date: Fri, 1 Mar 2024 14:47:55 +0100 Subject: [PATCH] Do not export non-essential files and prepare release --- .gitattributes | 10 ++++++++++ ChangeLog.md | 5 +++++ 2 files changed, 15 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2d2f5a3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +/.gitattributes export-ignore +/.gitignore export-ignore +/.github export-ignore +/.php_cs.dist export-ignore +/.travis.yml export-ignore +/build.xml export-ignore +/phpunit.xml export-ignore +/tests export-ignore + +*.php diff=php diff --git a/ChangeLog.md b/ChangeLog.md index 42804e6..e6b8631 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,10 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [3.0.5] - 2023-03-01 + +* No code changes, only updated `.gitattributes` to not export non-essential files. + ## [3.0.4] - 2023-05-07 ### Changed @@ -59,6 +63,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt * This component is no longer supported on PHP 5.6 +[3.0.5]: https://github.com/sebastianbergmann/diff/compare/3.0.4...3.0.5 [3.0.4]: https://github.com/sebastianbergmann/diff/compare/3.0.3...3.0.4 [3.0.3]: https://github.com/sebastianbergmann/diff/compare/3.0.2...3.0.3 [3.0.2]: https://github.com/sebastianbergmann/diff/compare/3.0.1...3.0.2 -- GitLab