Skip to content

Commit

Permalink
Set CrateDB version to 5.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
surister committed Oct 16, 2024
1 parent 56c9fca commit 75d8800
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
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"
4 changes: 2 additions & 2 deletions setup_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ def set_version(target: Antlr4Target, version: str):
"""
setup_logging()

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

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

0 comments on commit 75d8800

Please sign in to comment.