diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0b0999c0..c7831158 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index cc7d8712..fac0339f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,4 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.1] - 2021-03-25 -Initial Release \ No newline at end of file +Initial Release + +## [0.1.2] - 2021-03-25 + +Fix Project Classifiers \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index 74efd965..cbb8d355 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ -# GBQ - 0.1.1 +# GBQ - 0.1.2 [![CI pipeline status](https://github.com/wayfair-incubator/gbq/workflows/CI/badge.svg?branch=main)][ci] [![codecov](https://codecov.io/gh/wayfair-incubator/gbq/branch/main/graph/badge.svg)][codecov] @@ -37,11 +37,6 @@ To learn the basics of how to start using `gbq`, read the [Getting Started][gett To learn more about the various ways `gbq` can be used, read the Usage Guide page. -## API Reference - -To find detailed information about a specific function or class, read the [API Reference][api_reference]. - [ci]: https://github.com/wayfair-incubator/gbq/actions [codecov]: https://codecov.io/gh/wayfair-incubator/gbq [getting_started]: getting-started.md -[api_reference]: api.md \ No newline at end of file diff --git a/gbq/__init__.py b/gbq/__init__.py index 1b133a71..0b73c174 100644 --- a/gbq/__init__.py +++ b/gbq/__init__.py @@ -1,5 +1,5 @@ from gbq.bigquery import BigQuery -__version__ = "0.1.1" +__version__ = "0.1.2" __author__ = "Jash Parekh " __all__ = [BigQuery] # type: ignore diff --git a/setup.cfg b/setup.cfg index 01a42cbc..3e0ad10f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,20 +3,20 @@ name = gbq url = https://github.com/wayfair-incubator/gbq author = Jash Parekh author_email = jparekh1@wayfair.com -version = 0.1.1 +version = 0.1.2 description = Python wrapper for interacting Google BigQuery. long_description = file: README.md long_description_content_type = text/markdown license = See LICENSE classifiers = - "Development Status :: 4 - Beta" - "Programming Language :: Python" - "Programming Language :: Python :: 3" - "Programming Language :: Python :: 3.6" - "Programming Language :: Python :: 3.7" - "Programming Language :: Python :: 3.8" - "Programming Language :: Python :: 3.9" - "License :: OSI Approved :: MIT License" + Development Status :: 4 - Beta + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + License :: OSI Approved :: MIT License [options]