Skip to content

Commit

Permalink
chore(main): release 0.13.2 (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mause authored Sep 4, 2024
1 parent 853facd commit 7771480
Show file tree
Hide file tree
Showing 4 changed files with 15 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.13.1"
".": "0.13.2"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.13.2](https://github.com/Mause/duckdb_engine/compare/v0.13.1...v0.13.2) (2024-09-04)


### Bug Fixes

* **get_view_names:** Use proper schema ([#1082](https://github.com/Mause/duckdb_engine/issues/1082)) ([d5319c8](https://github.com/Mause/duckdb_engine/commit/d5319c80d3883425734062640ebd8562cf8525fb))


### Documentation

* use `read_only=False` so that example doesn't raise an exception. ([#1079](https://github.com/Mause/duckdb_engine/issues/1079)) ([d0688b4](https://github.com/Mause/duckdb_engine/commit/d0688b4b3e740fb357b6862ebe1ac698506f6488))

## [0.13.1](https://github.com/Mause/duckdb_engine/compare/v0.13.0...v0.13.1) (2024-07-29)


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

__version__ = "0.13.1"
__version__ = "0.13.2"
sqlalchemy_version = sqlalchemy.__version__
duckdb_version: str = duckdb.__version__
supports_attach: bool = duckdb_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.13.1"
version = "0.13.2"
description = "SQLAlchemy driver for duckdb"
authors = ["Elliana <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 7771480

Please sign in to comment.