diff --git a/CHANGELOG.md b/CHANGELOG.md index 281533c..f12e439 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.5.4 (2022-06-27) +### Fix +* Updating examples in doc ([#58](https://github.com/prql/PyPrql/issues/58)) ([`1c212e4`](https://github.com/prql/PyPrql/commit/1c212e444249f6fdee2b9437d75ecce6e1b19bed)) + ## v0.5.3 (2022-06-27) ### Fix * Update docs ([#56](https://github.com/prql/PyPrql/issues/56)) ([`524079f`](https://github.com/prql/PyPrql/commit/524079fd4e8c227b6b09985a0df33b2a705be85f)) diff --git a/pyproject.toml b/pyproject.toml index 3542a61..45321e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyprql" -version = "0.5.3" +version = "0.5.4" description = "Python TUI database client that supports prql" authors = ["qorrect ", "rbpatt2019 "] license = "Apache-2.0" diff --git a/pyprql/__init__.py b/pyprql/__init__.py index b0ada17..5bab7d9 100644 --- a/pyprql/__init__.py +++ b/pyprql/__init__.py @@ -3,4 +3,4 @@ import prql_python as prql # noqa: F401 from prql_python import to_sql as to_sql # noqa: F401 -__version__ = "0.5.3" +__version__ = "0.5.4"