Skip to content

Commit a97a335

Browse files
committed
Set CrateDB version to 5.8.3
1 parent 56c9fca commit a97a335

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Export `Statement` in both Python and Javascript target
55
- Fixed query parsing when expression includes special characters like `\n`, `\r`, or `\t`
66
- Fixed sqlparse crash on missing error context
7+
- Set CrateDB version to 5.8.3
78

89
## 2024/09/18 v0.0.7
910
- Improve error matching on single statement
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import {sqlparse, Statement} from "./parser.js";
22
export {sqlparse, Statement};
3-
export const __cratedb_version__ = "5.7.5"
3+
export const __cratedb_version__ = "5.8.3"

cratedb_sqlparse_py/cratedb_sqlparse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

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

5-
__cratedb_version__ = "5.7.5"
5+
__cratedb_version__ = "5.8.3"

setup_grammar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def set_version(target: Antlr4Target, version: str):
164164
setup_logging()
165165

166166
input_target = sys.argv[1]
167-
version = '5.7.2'
167+
version = '5.8.3'
168168

169169
if input_target.startswith("py"):
170170
target = Antlr4Target.python

0 commit comments

Comments
 (0)