Skip to content

Commit 4a1585f

Browse files
Merge pull request #36 from RumbleDB/NewRelease
Preparing new release 2.1.3.
2 parents 72207e3 + dc13b85 commit 4a1585f

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,11 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
336336

337337
# Latest updates
338338

339-
## Version 2.1.1
339+
## Version 2.1.3
340+
- Extend data frame detection to the presence of JSON nulls.
341+
- Many improvements supporting built-in function and improved XML/XQuery 3.1 support.
342+
343+
## Version 2.1.2
340344
- Extend data frame detection to nested arrays.
341345
- More bugfixes.
342346

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsoniq"
7-
version = "2.1.2"
7+
version = "2.1.3"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [

src/jsoniq/jars/rumbledb-2.1.1.jar

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/jsoniq/jars/rumbledb-2.1.3.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:d4d5ddfee1cb0f229c37cf6f02e792aadace74d32d898281c8d57930be861f8f
3+
size 79677068

src/jsoniq/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pandas as pd
88
from importlib.resources import files, as_file
99

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

0 commit comments

Comments
 (0)