diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2c97ebee..9278c325 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.4" + ".": "0.13.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5ccead..1c82431a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.13.5](https://github.com/Mause/duckdb_engine/compare/v0.13.4...v0.13.5) (2024-11-07) + + +### Bug Fixes + +* **deps:** update dependency duckdb to v1.1.3 ([3152ddb](https://github.com/Mause/duckdb_engine/commit/3152ddbf02c16cfb4bcdc1f56174be0473dc5bbd)) +* **nightly:** fix default connection references for nightly ([c0848d2](https://github.com/Mause/duckdb_engine/commit/c0848d270a08981a2bdcae8bddd1ecafafd9b6ca)) +* **reflection bug:** Fixed bug causing TypeError when using metadata.reflect() ([b96c1d2](https://github.com/Mause/duckdb_engine/commit/b96c1d2eccf362f12b67adde6203d49214ee47f3)) +* **sqlalchemy versions:** Added statement to apply changes only for sqlalchemy version 2.0.36 and above ([d6fcd32](https://github.com/Mause/duckdb_engine/commit/d6fcd32461f69d348a55401cc3b8d5c737eb54ab)) + ## [0.13.4](https://github.com/Mause/duckdb_engine/compare/v0.13.3...v0.13.4) (2024-10-22) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index 24377577..4e73397a 100644 --- a/duckdb_engine/__init__.py +++ b/duckdb_engine/__init__.py @@ -39,7 +39,7 @@ from .config import apply_config, get_core_config from .datatypes import ISCHEMA_NAMES, register_extension_types -__version__ = "0.13.4" +__version__ = "0.13.5" sqlalchemy_version = sqlalchemy.__version__ duckdb_version: str = duckdb.__version__ supports_attach: bool = duckdb_version >= "0.7.0" diff --git a/pyproject.toml b/pyproject.toml index c4e226fd..be2c9983 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.13.4" +version = "0.13.5" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT"