Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set CrateDB version to 5.8.3 #101

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Export `Statement` in both Python and Javascript target
- Fixed query parsing when expression includes special characters like `\n`, `\r`, or `\t`
- Fixed sqlparse crash on missing error context
- Set CrateDB version to 5.8.3

## 2024/09/18 v0.0.7
- Improve error matching on single statement
Expand Down
2 changes: 1 addition & 1 deletion cratedb_sqlparse_js/cratedb_sqlparse/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {sqlparse, Statement} from "./parser.js";
export {sqlparse, Statement};
export const __cratedb_version__ = "5.7.5"
export const __cratedb_version__ = "5.8.3"
2 changes: 1 addition & 1 deletion cratedb_sqlparse_py/cratedb_sqlparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["sqlparse", "ParsingException", "Statement"]

__cratedb_version__ = "5.7.5"
__cratedb_version__ = "5.8.3"
2 changes: 1 addition & 1 deletion setup_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def set_version(target: Antlr4Target, version: str):
setup_logging()

input_target = sys.argv[1]
version = '5.7.2'
version = '5.8.3'

if input_target.startswith("py"):
target = Antlr4Target.python
Expand Down
Loading