From 79101f9f7cc505e95fa8c50d54e93f172ff258e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Aug 2022 08:48:51 +0000 Subject: [PATCH] chore(master): release 0.3.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ duckdb_engine/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 816df2d5..04779995 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.1" + ".": "0.3.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index af1aea1e..b07182b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.2](https://github.com/Mause/duckdb_engine/compare/v0.3.1...v0.3.2) (2022-08-05) + + +### Bug Fixes + +* unpin numpy for python 3.6 ([3e87509](https://github.com/Mause/duckdb_engine/commit/3e875091164c018db6ccfa4e1dd2fd5e6238979c)) + ## [0.3.1](https://github.com/Mause/duckdb_engine/compare/v0.3.0...v0.3.1) (2022-08-05) diff --git a/duckdb_engine/__init__.py b/duckdb_engine/__init__.py index e89dfa3f..2960fea7 100644 --- a/duckdb_engine/__init__.py +++ b/duckdb_engine/__init__.py @@ -9,7 +9,7 @@ from sqlalchemy.dialects.postgresql.base import PGExecutionContext, PGInspector from sqlalchemy.engine.url import URL -__version__ = "0.3.1" +__version__ = "0.3.2" if TYPE_CHECKING: from sqlalchemy.sql.ddl import ExecutableDDLElement # type: ignore diff --git a/pyproject.toml b/pyproject.toml index 101570a4..6486ab16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "duckdb_engine" -version = "0.3.1" +version = "0.3.2" description = "SQLAlchemy driver for duckdb" authors = ["Elliana "] license = "MIT"