Skip to content

Commit

Permalink
Update setup.cfg (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
jashparekh authored Mar 25, 2021
1 parent ef19891 commit e3f79ac
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.1
current_version = 0.1.2
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Initial Release

## [0.1.2] - 2021-03-25

Fix Project Classifiers
7 changes: 1 addition & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -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]
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion gbq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from gbq.bigquery import BigQuery

__version__ = "0.1.1"
__version__ = "0.1.2"
__author__ = "Jash Parekh <[email protected]>"
__all__ = [BigQuery] # type: ignore
18 changes: 9 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name = gbq
url = https://github.com/wayfair-incubator/gbq
author = Jash Parekh
author_email = [email protected]
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]

Expand Down

0 comments on commit e3f79ac

Please sign in to comment.