From 8a911b84963b4f184815e794032fe8257abe09d0 Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Tue, 8 Jul 2025 10:14:46 +0200 Subject: [PATCH 1/2] Exclude non-essential files from distributed package Fixes #107 Introduce a .gitattributes to indicate a list of directories or files that do not need to be added when requiring a stable version of the package. --- .gitattributes | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1351841 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Folders +.github/ export-ignore +tests/ export-ignore + +# Files +.editorconfig export-ignore +.gitignore export-ignore +.gitattributes export-ignore +phpstan.neon.dist export-ignore +phpunit.xml export-ignore From 664cb275eb3e6f4ccdccf8e68f85c46cbbd522af Mon Sep 17 00:00:00 2001 From: Jeremy Herve Date: Tue, 8 Jul 2025 10:17:29 +0200 Subject: [PATCH 2/2] Add changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bda09..591d480 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Exclude non-essential files from distributed package [#110](https://github.com/soundasleep/html2text/pull/110) ## [1.1.0] - 2019-02-15 ### Added