Skip to content

Commit

Permalink
Merge pull request #849 from Mause/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.9.5
  • Loading branch information
Mause authored Dec 21, 2023
2 parents 7c5a1f6 + bd0357c commit 6f92c3f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.9.4"
".": "0.9.5"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.9.5](https://github.com/Mause/duckdb_engine/compare/v0.9.4...v0.9.5) (2023-12-21)


### Bug Fixes

* fix: support getting table properties using schema with db name prefix ([#848](https://github.com/Mause/duckdb_engine/pull/848))

## [0.9.4](https://github.com/Mause/duckdb_engine/compare/v0.9.3...v0.9.4) (2023-12-09)


Expand Down
2 changes: 1 addition & 1 deletion duckdb_engine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from .config import apply_config, get_core_config
from .datatypes import ISCHEMA_NAMES, register_extension_types

__version__ = "0.9.4"
__version__ = "0.9.5"
sqlalchemy_version = Version(sqlalchemy.__version__)
duckdb_version: str = duckdb.__version__ # type: ignore[attr-defined]
supports_attach: bool = Version(duckdb_version) >= Version("0.7.0")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "duckdb_engine"
version = "0.9.4"
version = "0.9.5"
description = "SQLAlchemy driver for duckdb"
authors = ["Elliana <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 6f92c3f

Please sign in to comment.