Skip to content

Commit 4c3e1b8

Browse files
authored
Merge pull request #699 from Mause/release-please--branches--master--components--duckdb_engine
chore(master): release 0.9.0
2 parents 5de1b54 + f2a3d90 commit 4c3e1b8

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-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.8.0"
2+
".": "0.9.0"
33
}

CHANGELOG.md

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

3+
## [0.9.0](https://github.com/Mause/duckdb_engine/compare/v0.8.0...v0.9.0) (2023-06-21)
4+
5+
6+
### Features
7+
8+
* added support for try_cast operator ([c4318ef](https://github.com/Mause/duckdb_engine/commit/c4318ef636b5a88a1cb8eccef827183884022a7b)) (see [SQLAlchemy docs](https://docs.sqlalchemy.org/en/20/core/sqlelement.html#sqlalchemy.sql.expression.try_cast) for more information)
9+
310
## [0.8.0](https://github.com/Mause/duckdb_engine/compare/v0.7.3...v0.8.0) (2023-06-20)
411

512

duckdb_engine/__init__.py

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

31-
__version__ = "0.8.0"
31+
__version__ = "0.9.0"
3232

3333
if TYPE_CHECKING:
3434
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.8.0"
3+
version = "0.9.0"
44
description = "SQLAlchemy driver for duckdb"
55
authors = ["Elliana <me@mause.me>"]
66
license = "MIT"

0 commit comments

Comments
 (0)