Skip to content

Commit 38b46a4

Browse files
Merge pull request #38 from RumbleDB/NewRelease
Improve DF.
2 parents 8544df1 + f1dec8b commit 38b46a4

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

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

337337
# Latest updates
338338

339-
## Version 2.1.4
339+
## Version 2.1.5
340340
- Extend data frame detection to the presence of JSON nulls.
341341
- Many improvements supporting built-in function and improved XML/XQuery 3.1 support.
342342

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.4"
7+
version = "2.1.5"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [

src/jsoniq/jars/rumbledb-2.1.4.jar

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

src/jsoniq/jars/rumbledb-2.1.5.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:9ba4907aea95f8fb6ab5e9dcab3087b46dc8e9c25b90c313cc0bb0ca47622f2b
3+
size 79917176

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.4.jar")) as jar_path:
10+
with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.5.jar")) as jar_path:
1111
if (os.name == 'nt'):
1212
jar_path_str = str(jar_path)
1313
else:

0 commit comments

Comments
 (0)