Skip to content

Commit bb93e45

Browse files
Version 2.1.0
Files
2 parents 162ebdc + e2be381 commit bb93e45

7 files changed

Lines changed: 11 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,9 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
338338

339339
# Latest updates
340340

341+
## Version 2.1.0
342+
- Upgraded to the RumbleDB 2.1.0 underlying Java implementation. More details on new features (including enhanced XML/XQuery 3.1 support) at https://github.com/RumbleDB/rumble/releases/tag/v2.1.0
343+
341344
## Version 2.0.9
342345
- Solve an issue under Windows that caused the error "Java gateway process exited before sending its port number.".
343346

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsoniq"
7-
version = "2.0.9"
7+
version = "2.1.0"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"pyspark==4.0.1",
11+
"pyspark==4.0.2",
1212
"pandas>=2.2",
1313
"delta-spark==4.0"
1414
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyspark==4.0.1
1+
pyspark==4.0.2
22
pandas==2.3

src/jsoniq/jars/rumbledb-2.0.0.jar

-76 MB
Binary file not shown.

src/jsoniq/jars/rumbledb-2.0.8.jar

-76 MB
Binary file not shown.

src/jsoniq/jars/rumbledb-2.1.0.jar

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:7e2cc19ebba08e8572de33af419e5f395663f9b0a202765feff0b111c9946923
3+
size 79720245

src/jsoniq/session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import os
66
import re
77
import pandas as pd
8-
import importlib.resources as pkg_resources
8+
from importlib.resources import files, as_file
99

10-
with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.8.jar") as jar_path:
10+
with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.0.jar")) as jar_path:
1111
if (os.name == 'nt'):
1212
jar_path_str = str(jar_path)
1313
else:

0 commit comments

Comments
 (0)