Skip to content

Commit

Permalink
Prepare release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bblommers committed Dec 17, 2023
1 parent c761dce commit 91e7810
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

0.5.0
-----
- Improved typing support
- Support for INSERT/UPDATE/DELETE statements

0.4.2
-----
- Support for Python 3.12
Expand Down
2 changes: 1 addition & 1 deletion py_partiql_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.2"
__version__ = "0.5.0"


from ._internal.parser import DynamoDBStatementParser, S3SelectParser # noqa
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "py-partiql-parser"
version = "0.4.2"
version = "0.5.0"
description = "Pure Python PartiQL Parser"
readme = "README.md"
keywords = ["pypartiql", "parser"]
Expand All @@ -18,7 +18,7 @@ dependencies = []
dev = [
"black==22.6.0",
"flake8",
"mypy==0.971",
"mypy",
"pytest"
]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_where_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,4 @@ def test_parameters(self) -> None:
resp = parser.parse(
"body = ?", parameters=[{"M": {"data": {"S": "some text"}}}]
)
assert resp == data # type: ignore[comparison-overlap]
assert resp == data

0 comments on commit 91e7810

Please sign in to comment.