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 55a28337..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: @@ -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",