Skip to content

Commit

Permalink
v1.0.0 Release (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
jashparekh authored Sep 19, 2022
1 parent f8142ff commit ad743c1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 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.5.0
current_version = 1.0.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2022-09-19

### Added
- Support for executing a SQL statement

### Changed
- Removed support for creating views using SQL statement
- Update dependencies

## [0.5.0] - 2022-02-05

- Remove support for Python 3.6
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.5.0
# GBQ - 1.0.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.5.0"
__version__ = "1.0.0"
__author__ = "Jash Parekh <[email protected]>"
__all__ = [BigQuery] # type: ignore
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.5.0
version = 1.0.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 ad743c1

Please sign in to comment.