From 6212cbe51ff991ab234fe83e4c2efa57bb3f9635 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Thu, 8 Feb 2024 06:22:04 -0600 Subject: [PATCH 1/2] pyproject: Include MIGRATION in sdist Fixes #508 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b71934e08..64d2656f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ packages = [ ] include = [ { path = "CHANGES", format = "sdist" }, + { path = "MIGRATION", format = "sdist" }, { path = ".tmuxp.yaml", format = "sdist" }, { path = "tests", format = "sdist" }, { path = "docs", format = "sdist" }, From 8ba3daaec1f3ccb4e0a7b445bf58fc5380b35144 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Thu, 8 Feb 2024 06:29:44 -0600 Subject: [PATCH 2/2] docs(CHANGES): Note MIGRATION file inclusion --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 437f7e4a7..e63add09f 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,10 @@ $ pip install --user --upgrade --pre libtmux +### Packaging + +- Include `MIGRATION` in source distribution tarball (#517, for #508) + ## libtmux 0.27.0 (2024-02-07) ### Improvement