diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 389c5467..e7ca6139 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0-rc1" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 14cafd5e..490376e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index 9d460997..d307ad4c 100644 --- a/duckdb_engine/__init__.py +++ b/duckdb_engine/__init__.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 0a3daa45..b5d69859 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"