Skip to content

Commit c35887f

Browse files
authored
Merge pull request #692 from Mause/release-please--branches--master--components--duckdb_engine
chore(master): release 0.8.0
2 parents 88f621c + 0b2d99e commit c35887f

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.3"
2+
".": "0.8.0"
33
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/Mause/duckdb_engine/compare/v0.7.3...v0.8.0) (2023-06-20)
4+
5+
6+
### Features
7+
8+
* nested types (Struct, Map, Union) ([5c16863](https://github.com/Mause/duckdb_engine/commit/5c16863fce86a11f5bef64449f453dd8b0ef8167))
9+
* passing config via query parameters in the url ([6907041](https://github.com/Mause/duckdb_engine/pull/675/commits/690704175dc5d61530dc3fd74b0526a638010ba6)
10+
11+
### Bug Fixes
12+
13+
* allow passing motherduck_token as a config parameter ([b944405](https://github.com/Mause/duckdb_engine/commit/b9444054260eb10c7d473dc55cb7cd7e8a0e84b6))
14+
315
## [0.7.3](https://github.com/Mause/duckdb_engine/compare/v0.7.2...v0.7.3) (2023-05-19)
416

517

duckdb_engine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from .config import apply_config, get_core_config
2727
from .datatypes import ISCHEMA_NAMES, register_extension_types
2828

29-
__version__ = "0.7.3"
29+
__version__ = "0.8.0"
3030

3131
if TYPE_CHECKING:
3232
from sqlalchemy.base import Connection

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "duckdb_engine"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
description = "SQLAlchemy driver for duckdb"
55
authors = ["Elliana <me@mause.me>"]
66
license = "MIT"

0 commit comments

Comments
 (0)