diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 89688e25..d1eff552 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.3" + ".": "0.11.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dcb7940..27242043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.11.4](https://github.com/Mause/duckdb_engine/compare/v0.11.3...v0.11.4) (2024-04-09) + + +### Bug Fixes + +* drop python 3.7 support ([9acdd66](https://github.com/Mause/duckdb_engine/commit/9acdd660f9f50f120393128f06c12da7e89dfefd)) + ## [0.11.3](https://github.com/Mause/duckdb_engine/compare/v0.11.2...v0.11.3) (2024-04-07) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index b710a41b..d0238d0f 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.11.3" +__version__ = "0.11.4" 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 3666a67b..1e1b6d70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.11.3" +version = "0.11.4" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT"