Skip to content

Commit d2ebb5a

Browse files
author
Ghislain Fourny
committed
Official 2.0 release.
1 parent f6edcef commit d2ebb5a

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,10 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
338338

339339
# Latest updates
340340

341+
## Version 2.0.0
342+
- Aligned on the brand new RumbleDB 2.0 release.
343+
- Improved display of pandas dataframes output with -pdf in Jupyter notebooks.
344+
341345
## Version 2.0.0 alpha 1
342346
- When returning a single-column DataFrame with atomic values, the name is now __value and not value to avoid collisions with user-defined columns.
343347
- Improved schema inferrence: DataFrames can be returned in a wider range of cases.

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

src/jsoniq/jars/rumbledb-2.0.0.jar

-85 Bytes
Binary file not shown.

src/jsoniqmagic/magic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def run(self, line, cell=None, timed=False):
102102
print("Usual reasons: firewall, misconfigured proxy.")
103103
return
104104
if pdf is not None:
105-
print(pdf)
105+
return pdf
106106

107107
if (args.apply_updates):
108108
if ("PUL" in response.availableOutputs()):

0 commit comments

Comments
 (0)