Skip to content

Commit 4807632

Browse files
author
Ghislain Fourny
committed
Version bump.
1 parent dc13b85 commit 4807632

4 files changed

Lines changed: 3 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.3
339+
## Version 2.1.4
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.3"
7+
version = "2.1.4"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [

src/jsoniq/jars/rumbledb-2.1.3.jar

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

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

0 commit comments

Comments
 (0)