diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7b5cb645..b19a3f40 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.1" + ".": "0.14.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6efaacc5..730a8793 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.14.2](https://github.com/Mause/duckdb_engine/compare/v0.14.1...v0.14.2) (2025-01-10) + + +### Bug Fixes + +* use full list of reserved words ([6dbadf1](https://github.com/Mause/duckdb_engine/commit/6dbadf1edfe6fd6f0c698b6dc12debb654dde8bc)) + ## [0.14.1](https://github.com/Mause/duckdb_engine/compare/v0.14.0...v0.14.1) (2025-01-10) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index 3805e540..775ba5a6 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.14.1" +__version__ = "0.14.2" 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 ad87b558..01fb1592 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.14.1" +version = "0.14.2" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT"