Skip to content

Commit

Permalink
Bump version: 0.4.0 → 0.5.0 (#257)
Browse files Browse the repository at this point in the history
Co-authored-by: Jash Parekh <[email protected]>
  • Loading branch information
jashparekh and Jash Parekh authored Feb 5, 2022
1 parent 9d54316 commit f797a09
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 20 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.4.0
current_version = 0.5.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0] - 2022-02-05

- Remove support for Python 3.6
- Update dependencies

## [0.4.0] - 2021-11-28

- Monthly release to keep dependencies up to date
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GBQ - 0.4.0
# GBQ - 0.5.0

[![CI pipeline status](https://github.com/wayfair-incubator/gbq/workflows/CI/badge.svg?branch=main)][ci]
[![PyPI](https://img.shields.io/pypi/v/gbq)](https://pypi.org/project/gbq/)
Expand Down
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.4.0"
__version__ = "0.5.0"
__author__ = "Jash Parekh <[email protected]>"
__all__ = [BigQuery] # type: ignore
32 changes: 16 additions & 16 deletions requirements.lock
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# THIS IS AN AUTOGENERATED LOCKFILE. DO NOT EDIT MANUALLY.
cachetools==4.2.4
cachetools==5.0.0
certifi==2021.10.8
charset-normalizer==2.0.8
charset-normalizer==2.0.11
click==8.0.3
google-api-core==2.2.2
google-auth==2.3.3
google-cloud-bigquery==2.30.1
google-cloud-core==2.2.1
google-api-core==2.5.0
google-auth==2.6.0
google-cloud-bigquery==2.32.0
google-cloud-core==2.2.2
google-crc32c==1.3.0
google-resumable-media==2.1.0
googleapis-common-protos==1.53.0
grpcio==1.42.0
grpcio-status==1.42.0
googleapis-common-protos==1.54.0
grpcio==1.43.0
grpcio-status==1.43.0
idna==3.3
packaging==21.3
pip==21.2.4
proto-plus==1.19.8
protobuf==3.19.1
proto-plus==1.19.9
protobuf==3.19.4
pyasn1==0.4.8
pyasn1-modules==0.2.8
pydantic==1.8.2
pyparsing==3.0.6
pydantic==1.9.0
pyparsing==3.0.7
python-dateutil==2.8.2
requests==2.26.0
requests==2.27.1
rsa==4.8
setuptools==57.5.0
six==1.16.0
typing_extensions==4.0.0
urllib3==1.26.7
typing_extensions==4.0.1
urllib3==1.26.8
wheel==0.37.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = gbq
url = https://github.com/wayfair-incubator/gbq
author = Jash Parekh
author_email = [email protected]
version = 0.4.0
version = 0.5.0
description = Python wrapper for interacting Google BigQuery.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit f797a09

Please sign in to comment.