diff --git a/README.md b/README.md index 39e5395..eb6d70e 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ Even more queries can be found [here](https://colab.research.google.com/github/R # Latest updates -## Version 2.1.3 +## Version 2.1.4 - Extend data frame detection to the presence of JSON nulls. - Many improvements supporting built-in function and improved XML/XQuery 3.1 support. diff --git a/pyproject.toml b/pyproject.toml index de98250..0a75d09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "jsoniq" -version = "2.1.3" +version = "2.1.4" description = "Python edition of RumbleDB, a JSONiq engine" requires-python = ">=3.11" dependencies = [ diff --git a/src/jsoniq/jars/rumbledb-2.1.3.jar b/src/jsoniq/jars/rumbledb-2.1.3.jar deleted file mode 100644 index 1f00557..0000000 --- a/src/jsoniq/jars/rumbledb-2.1.3.jar +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d4d5ddfee1cb0f229c37cf6f02e792aadace74d32d898281c8d57930be861f8f -size 79677068 diff --git a/src/jsoniq/jars/rumbledb-2.1.4.jar b/src/jsoniq/jars/rumbledb-2.1.4.jar new file mode 100644 index 0000000..f43d285 --- /dev/null +++ b/src/jsoniq/jars/rumbledb-2.1.4.jar @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a08e3c651a6d3ed67f9595c7e320f68670e1e3bce849ab1301c4e1ef8b6f1d9 +size 79677143 diff --git a/src/jsoniq/session.py b/src/jsoniq/session.py index 11f1ef3..b48a465 100644 --- a/src/jsoniq/session.py +++ b/src/jsoniq/session.py @@ -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.3.jar")) as jar_path: +with as_file(files("jsoniq.jars").joinpath("rumbledb-2.1.4.jar")) as jar_path: if (os.name == 'nt'): jar_path_str = str(jar_path) else: