From 42367d5244f5800dbcfa9653a645de9edbd0104e Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Wed, 25 Dec 2024 21:04:43 -0100 Subject: [PATCH] Prepare release 0.6.1 --- CHANGELOG.md | 8 ++++++++ py_partiql_parser/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa961fd..38bf1d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ CHANGELOG ========= +0.6.1 +----- + - Fix project build + +0.6.0 +----- + - S3SelectParser now returns the number of BytesProcessed + 0.5.6 ----- - DynamoDB table names can now be MixedCased diff --git a/py_partiql_parser/__init__.py b/py_partiql_parser/__init__.py index 7c97683..d12893a 100644 --- a/py_partiql_parser/__init__.py +++ b/py_partiql_parser/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.6" +__version__ = "0.6.1" from ._internal.parser import DynamoDBStatementParser, S3SelectParser # noqa diff --git a/pyproject.toml b/pyproject.toml index ad90e35..f00329d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "py-partiql-parser" -version = "0.5.6" +version = "0.6.1" description = "Pure Python PartiQL Parser" readme = "README.md" keywords = ["pypartiql", "parser"]