From 980112a9804b287f867ad02cf3742693fc2c226a Mon Sep 17 00:00:00 2001 From: Elliana May Date: Tue, 5 Dec 2023 10:56:46 +0800 Subject: [PATCH 1/2] chore(main): release 0.9.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ duckdb_engine/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7e08ec6a..ee2bfff4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 27d1c25c..6f7f0bf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.9.3](https://github.com/Mause/duckdb_engine/compare/v0.9.2...v0.9.3) (2023-12-05) + + +### Bug Fixes + +* update constant ([ec61da2](https://github.com/Mause/duckdb_engine/commit/ec61da22ae6251814c604e6dc04cfa5c6de40444)) +* use numeric_dollar where available ([f51ee7f](https://github.com/Mause/duckdb_engine/commit/f51ee7fb481f6e41e9d6636356edb81ee5e424cd)) + + +### Documentation + +* add directions for `alembic` support ([d549ba4](https://github.com/Mause/duckdb_engine/commit/d549ba497b1830b73b54dda4cd983ddb3114c150)) +* update autoloading docs ([b782994](https://github.com/Mause/duckdb_engine/commit/b7829948114fb391918795a932564da2bbbb16db)) +* update register docs ([9081ef7](https://github.com/Mause/duckdb_engine/commit/9081ef76cac0dd80b3922cc2b290724db17aa28e)) +* update toc ([abcb158](https://github.com/Mause/duckdb_engine/commit/abcb158c42b734514028fbb9741c7c7dfa04f985)) +* update toc ([#785](https://github.com/Mause/duckdb_engine/issues/785)) ([234a8b8](https://github.com/Mause/duckdb_engine/commit/234a8b801ffe4d236c8a790b880bc81207f37266)) + ## [0.9.2](https://github.com/Mause/duckdb_engine/compare/v0.9.1...v0.9.2) (2023-07-23) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index 3516bdb4..3d521e25 100644 --- a/duckdb_engine/__init__.py +++ b/duckdb_engine/__init__.py @@ -29,7 +29,7 @@ from .config import apply_config, get_core_config from .datatypes import ISCHEMA_NAMES, register_extension_types -__version__ = "0.9.2" +__version__ = "0.9.3" sqlalchemy_version = Version(sqlalchemy.__version__) if TYPE_CHECKING: diff --git a/pyproject.toml b/pyproject.toml index 8848df9c..1d239d7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.9.2" +version = "0.9.3" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT" From ed26cdd7ca72e6532e53e7cfa9f588ca15d4ec4e Mon Sep 17 00:00:00 2001 From: Elliana May Date: Tue, 5 Dec 2023 11:05:06 +0800 Subject: [PATCH 2/2] chore: Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7f0bf9..817ebe1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,6 @@ ### Bug Fixes -* update constant ([ec61da2](https://github.com/Mause/duckdb_engine/commit/ec61da22ae6251814c604e6dc04cfa5c6de40444)) * use numeric_dollar where available ([f51ee7f](https://github.com/Mause/duckdb_engine/commit/f51ee7fb481f6e41e9d6636356edb81ee5e424cd))