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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,11 @@ Even more queries can be found [here](https://colab.research.google.com/github/R

# Latest updates

## Version 2.1.1
## Version 2.1.3
- Extend data frame detection to the presence of JSON nulls.
- Many improvements supporting built-in function and improved XML/XQuery 3.1 support.

## Version 2.1.2
- Extend data frame detection to nested arrays.
- More bugfixes.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "jsoniq"
version = "2.1.2"
version = "2.1.3"
description = "Python edition of RumbleDB, a JSONiq engine"
requires-python = ">=3.11"
dependencies = [
Expand Down
3 changes: 0 additions & 3 deletions src/jsoniq/jars/rumbledb-2.1.1.jar

This file was deleted.

3 changes: 3 additions & 0 deletions src/jsoniq/jars/rumbledb-2.1.3.jar
Git LFS file not shown
2 changes: 1 addition & 1 deletion src/jsoniq/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import pandas as pd
from importlib.resources import files, as_file

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