Skip to content
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ Even more queries can be found [here](https://colab.research.google.com/github/R

# Latest updates

## Version 2.1.0
- 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

## Version 2.0.9
- Solve an issue under Windows that caused the error "Java gateway process exited before sending its port number.".

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "jsoniq"
version = "2.0.9"
version = "2.1.0"
description = "Python edition of RumbleDB, a JSONiq engine"
requires-python = ">=3.11"
dependencies = [
"pyspark==4.0.1",
"pyspark==4.0.2",
"pandas>=2.2",
"delta-spark==4.0"
]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyspark==4.0.1
pyspark==4.0.2
pandas==2.3
Binary file removed src/jsoniq/jars/rumbledb-2.0.0.jar
Binary file not shown.
Binary file removed src/jsoniq/jars/rumbledb-2.0.8.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions src/jsoniq/jars/rumbledb-2.1.0.jar
Git LFS file not shown
4 changes: 2 additions & 2 deletions src/jsoniq/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import os
import re
import pandas as pd
import importlib.resources as pkg_resources
from importlib.resources import files, as_file

with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.8.jar") as jar_path:
with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.0.jar")) as jar_path:
if (os.name == 'nt'):
jar_path_str = str(jar_path)
else:
Expand Down
Loading