From fb6d759ea3521819afca78cc6c8de8f899382258 Mon Sep 17 00:00:00 2001 From: Elliana May Date: Tue, 20 Jun 2023 23:09:01 +0800 Subject: [PATCH 1/2] chore(master): release 0.8.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ duckdb_engine/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 657149d5..64f3cdd6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.3" + ".": "0.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8922e5d5..f2f0ea15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.8.0](https://github.com/Mause/duckdb_engine/compare/v0.7.3...v0.8.0) (2023-06-20) + + +### Features + +* implement nested type internals ([5c16863](https://github.com/Mause/duckdb_engine/commit/5c16863fce86a11f5bef64449f453dd8b0ef8167)) + + +### Bug Fixes + +* allow for segfaults too ([d4a56fc](https://github.com/Mause/duckdb_engine/commit/d4a56fcec608f405478ae149d378a99c693a2df7)) +* **deps:** update dependency numpy to v1.25.0 ([99dab3f](https://github.com/Mause/duckdb_engine/commit/99dab3f71bfcbede7939c63a7e6c69c3b2ea17b5)) +* merge connect_args and url config ([3b6ef2d](https://github.com/Mause/duckdb_engine/commit/3b6ef2d59080a9547ba08eb855489864cf66bd28)) +* motherduck_token ([b944405](https://github.com/Mause/duckdb_engine/commit/b9444054260eb10c7d473dc55cb7cd7e8a0e84b6)) +* restore db override ([0a431a8](https://github.com/Mause/duckdb_engine/commit/0a431a8cfe1c92fadc6f130ba68b4a2dbe9d4a13)) + ## [0.7.3](https://github.com/Mause/duckdb_engine/compare/v0.7.2...v0.7.3) (2023-05-19) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index 6d0528cb..b3eec680 100644 --- a/duckdb_engine/__init__.py +++ b/duckdb_engine/__init__.py @@ -26,7 +26,7 @@ from .config import apply_config, get_core_config from .datatypes import ISCHEMA_NAMES, register_extension_types -__version__ = "0.7.3" +__version__ = "0.8.0" if TYPE_CHECKING: from sqlalchemy.base import Connection diff --git a/pyproject.toml b/pyproject.toml index 00f95626..1ddd25f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.7.3" +version = "0.8.0" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT" From 0b2d99e63cbad78344121ad6605e7661dd6ac7e0 Mon Sep 17 00:00:00 2001 From: Elliana May Date: Tue, 20 Jun 2023 23:19:39 +0800 Subject: [PATCH 2/2] chore: Update CHANGELOG.md --- CHANGELOG.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f0ea15..5521d4e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,12 @@ ### Features -* implement nested type internals ([5c16863](https://github.com/Mause/duckdb_engine/commit/5c16863fce86a11f5bef64449f453dd8b0ef8167)) - +* nested types (Struct, Map, Union) ([5c16863](https://github.com/Mause/duckdb_engine/commit/5c16863fce86a11f5bef64449f453dd8b0ef8167)) +* passing config via query parameters in the url ([6907041](https://github.com/Mause/duckdb_engine/pull/675/commits/690704175dc5d61530dc3fd74b0526a638010ba6) ### Bug Fixes -* allow for segfaults too ([d4a56fc](https://github.com/Mause/duckdb_engine/commit/d4a56fcec608f405478ae149d378a99c693a2df7)) -* **deps:** update dependency numpy to v1.25.0 ([99dab3f](https://github.com/Mause/duckdb_engine/commit/99dab3f71bfcbede7939c63a7e6c69c3b2ea17b5)) -* merge connect_args and url config ([3b6ef2d](https://github.com/Mause/duckdb_engine/commit/3b6ef2d59080a9547ba08eb855489864cf66bd28)) -* motherduck_token ([b944405](https://github.com/Mause/duckdb_engine/commit/b9444054260eb10c7d473dc55cb7cd7e8a0e84b6)) -* restore db override ([0a431a8](https://github.com/Mause/duckdb_engine/commit/0a431a8cfe1c92fadc6f130ba68b4a2dbe9d4a13)) +* allow passing motherduck_token as a config parameter ([b944405](https://github.com/Mause/duckdb_engine/commit/b9444054260eb10c7d473dc55cb7cd7e8a0e84b6)) ## [0.7.3](https://github.com/Mause/duckdb_engine/compare/v0.7.2...v0.7.3) (2023-05-19)