diff --git a/CHANGELOG.md b/CHANGELOG.md index 25dbb7967..78a162e03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 0.19.1 (2023-03-28) +- Fixed `.graphql` definitions files not being included in the dist files + + ## 0.19.0 (2023-03-27) - Added `InputType` for setting Python representations of GraphQL Input types diff --git a/pyproject.toml b/pyproject.toml index 17dff5d44..b50561acb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "ariadne" -version = "0.19.0" +version = "0.19.1" description = "Ariadne is a Python library for implementing GraphQL servers." authors = [{ name = "Mirumee Software", email = "hello@mirumee.com" }] readme = "README.md" @@ -58,6 +58,7 @@ tracing = ["opentracing"] include = [ "ariadne/**/*.py", "ariadne/**/*.html", + "ariadne/**/*.graphql", "ariadne/py.typed", "LICENSE", "README.md",