Skip to content

Commit

Permalink
Bump version: 0.1.5 → 0.2.0 (#136)
Browse files Browse the repository at this point in the history
* Bump version: 0.1.5 → 0.2.0

* Update requirements

* Update CHANGELOG.md
  • Loading branch information
jashparekh authored Aug 7, 2021
1 parent 77a230f commit 084d820
Showing 6 changed files with 16 additions and 11 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.5
current_version = 0.2.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0] - 2021-08-07

* Updated dependencies to most recent version
* Updated CI documentation

## [0.1.5] - 2021-06-01

### Updated
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.1.5
# GBQ - 0.2.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/)
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.5"
__version__ = "0.2.0"
__author__ = "Jash Parekh <jparekh1@wayfair.com>"
__all__ = [BigQuery] # type: ignore
14 changes: 7 additions & 7 deletions requirements.lock
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@
cachetools==4.2.2
certifi==2021.5.30
cffi==1.14.6
charset-normalizer==2.0.3
charset-normalizer==2.0.4
click==8.0.1
google-api-core==1.31.0
google-auth==1.33.1
google-cloud-bigquery==2.22.0
google-cloud-core==1.7.1
google-api-core==1.31.1
google-auth==1.34.0
google-cloud-bigquery==2.23.2
google-cloud-core==1.7.2
google-crc32c==1.1.2
google-resumable-media==1.3.1
google-resumable-media==1.3.3
googleapis-common-protos==1.53.0
grpcio==1.38.1
grpcio==1.39.0
idna==3.2
packaging==21.0
pip==21.1.1
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = gbq
url = https://github.com/wayfair-incubator/gbq
author = Jash Parekh
author_email = jparekh1@wayfair.com
version = 0.1.5
version = 0.2.0
description = Python wrapper for interacting Google BigQuery.
long_description = file: README.md
long_description_content_type = text/markdown

0 comments on commit 084d820

Please sign in to comment.