diff --git a/CHANGELOG.md b/CHANGELOG.md index 853c080e..003216ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.6 - 8/9/23 + +- Add back appropriate sdist files [comment](https://github.com/amoffat/sh/commit/89333ae48069a5b445b3535232195b2de6f4648f) + ## 2.0.5 - 8/7/23 - Allow nested `with` contexts [#690](https://github.com/amoffat/sh/issues/690) diff --git a/pyproject.toml b/pyproject.toml index a8c9adaf..127134d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sh" -version = "2.0.5" +version = "2.0.6" description = "Python subprocess replacement" authors = ["Andrew Moffat "] readme = "README.rst" @@ -29,9 +29,13 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", ] include = [ - "CHANGELOG.md", - "MIGRATION.md", - "LICENSE.txt", + { path = "CHANGELOG.md", format = "sdist" }, + { path = "MIGRATION.md", format = "sdist" }, + { path = "images", format = "sdist" }, + { path = "Makefile", format = "sdist" }, + { path = "tests", format = "sdist" }, + { path = "tox.ini", format = "sdist" }, + { path = "LICENSE.txt", format = "sdist" }, ] [tool.poetry.dependencies]