diff --git a/CHANGELOG.md b/CHANGELOG.md index e5025b7..949185a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Fixed - Fix the only child detection when creating tables. ([#175](https://github.com/sdispater/tomlkit/issues/175)) +- Include the `docs/` directory and `CHANGELOG.md` in sdist tarball. ([#176](https://github.com/sdispater/tomlkit/issues/176)) ## [0.9.2] - 2022-02-08 diff --git a/pyproject.toml b/pyproject.toml index a937af7..df6c9a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,9 @@ repository = "https://github.com/sdispater/tomlkit" include = [ { path = "tomlkit/py.typed" }, - { path = "tests", format = "sdist" } + { path = "tests", format = "sdist" }, + { path = "docs", format = "sdist" }, + { path = "CHANGELOG.md", format = "sdist" }, ] [tool.poetry.dependencies]