From 0cfc5de467823998ba72af1fee1d2a8aa865fabc Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Thu, 1 Apr 2021 14:06:01 -0500 Subject: [PATCH 1/3] fix: correct classifiers in `setup.py` (#107) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-sqlalchemy/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Follow-up to https://github.com/googleapis/python-bigquery-sqlalchemy/pull/92 🦕 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55a28337..9fbc5998 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,8 @@ def readme(): classifiers=[ release_status, "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License" "Programming Language :: Python", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", From 7b14a06f71f113af0e2970898bc0ec203e4e6464 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Tue, 6 Apr 2021 10:16:59 -0500 Subject: [PATCH 2/3] feat: fetch table and column descriptions during reflection (#115) This empty commit is a follow-up to PR #82, It should allow release-please to update the changelog. From 101153a14706ae325893f3ddf6dbd934c4ef65a0 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 6 Apr 2021 10:44:16 -0500 Subject: [PATCH 3/3] chore: release 0.6.0 (#116) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76d8cbe3..3e7f5cf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ [1]: https://pypi.org/project/pybigquery/#history +## [0.6.0](https://www.github.com/googleapis/python-bigquery-sqlalchemy/compare/v0.5.1...v0.6.0) (2021-04-06) + + +### Features + +* fetch table and column descriptions during reflection ([#115](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/115)) ([7b14a06](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/7b14a06f71f113af0e2970898bc0ec203e4e6464)) + + +### Bug Fixes + +* correct classifiers in `setup.py` ([#107](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/107)) ([0cfc5de](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/0cfc5de467823998ba72af1fee1d2a8aa865fabc)) + ### [0.5.1](https://www.github.com/googleapis/python-bigquery-sqlalchemy/compare/v0.5.0...v0.5.1) (2021-04-01) diff --git a/setup.py b/setup.py index 9fbc5998..153bf30e 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # Package metadata. name = "pybigquery" -version = "0.5.1" +version = "0.6.0" description = "SQLAlchemy dialect for BigQuery" # Should be one of: