diff --git a/CHANGELOG.md b/CHANGELOG.md index c5cec649c..153c5407a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,9 @@ # CHANGELOG -## 0.10.17dev +## 0.10.17 (2025-01-08) * [Feature] Disable full stack trace when using spark connect ([#1011](https://github.com/ploomber/jupysql/issues/1011)) (by [@b1ackout](https://github.com/b1ackout)) - ## 0.10.16 (2024-11-07) * [Fix] Updates docs for querying data frames when using DuckDB SQLAlchemy connections diff --git a/src/sql/__init__.py b/src/sql/__init__.py index 92a65a382..930bbbcdd 100644 --- a/src/sql/__init__.py +++ b/src/sql/__init__.py @@ -1,7 +1,7 @@ from sql.magic import load_ipython_extension -__version__ = "0.10.17dev" +__version__ = "0.10.17" __all__ = ["load_ipython_extension"]