Skip to content

Commit

Permalink
0.2.4
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release authored and qorrect committed Mar 29, 2022
1 parent 5837717 commit eca2adc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

<!--next-version-placeholder-->

## v0.2.4 (2022-03-29)
### Fix
* **cli.py:** Check for sqlalchemy error ([`fe2c804`](https://github.com/qorrect/PyPrql/commit/fe2c804470139699a3708a286167ba1c297b0aaa))
* **cli.py:** Increase default limit ([`b5e7be4`](https://github.com/qorrect/PyPrql/commit/b5e7be4b574e476495367dd5af26df3633d47b38))
* **cli.py:** Append limit to select only ([`66f1d57`](https://github.com/qorrect/PyPrql/commit/66f1d57cdd3e69141383f712a2ae71c1eb34a2ec))

### Documentation
* **prql.py:** Add annotations ([`a03b653`](https://github.com/qorrect/PyPrql/commit/a03b653590a8fd4daef26f9ae26f718498ccf75a))
* **cli.py:** Correct docstrings ([`ee2a5f2`](https://github.com/qorrect/PyPrql/commit/ee2a5f2eeee8c8ce8b5e8cdc3aad8022c591527a))
* ***:** Add module level docstings ([`a9d30de`](https://github.com/qorrect/PyPrql/commit/a9d30de78450f24953b4e27b16532a6baa5a777f))

## v0.2.3 (2022-03-21)
### Fix
* Fixes examples command in the cli ([`30d2b2f`](https://github.com/qorrect/PyPrql/commit/30d2b2f27e4bf64d59d64f8f4fa566a2c8111e6b))
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyprql"
version = "0.2.3"
version = "0.2.4"
description = "Python Implementation of Pipelined Relational Query Language (PRQL)"
authors = ["qorrect <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pyprql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Source code for PyPrql."""
__version__ = "0.2.3"
__version__ = "0.2.4"

import pyprql.lang.prql as prql # noqa: F401
from pyprql.lang.prql import to_sql as to_sql # noqa: F401

0 comments on commit eca2adc

Please sign in to comment.