Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(master): release 0.7.0 #581

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.7.0-rc1"
".": "0.7.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.0](https://github.com/Mause/duckdb_engine/compare/v0.7.0-rc1...v0.7.0) (2023-03-16)


### Miscellaneous Chores

* release 0.7.0 ([c790424](https://github.com/Mause/duckdb_engine/commit/c790424aee5f2bfcfe589ad7f27b4f2e18b4d1e2))

## [0.7.0-rc1](https://github.com/Mause/duckdb_engine/compare/v0.6.9...v0.7.0-rc1) (2023-03-07)


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

__version__ = "0.7.0-rc1"
__version__ = "0.7.0"

if TYPE_CHECKING:
from sqlalchemy.base import Connection
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.7.0-rc1"
version = "0.7.0"
description = "SQLAlchemy driver for duckdb"
authors = ["Elliana <me@mause.me>"]
license = "MIT"
Expand Down