Skip to content

Commit

Permalink
Add Dataclass and Typing Extensions Dependency for Python < 3.6 (#50)
Browse files Browse the repository at this point in the history
Co-authored-by: Jash Parekh <jparekh1@wayfair.com>
  • Loading branch information
jashparekh and Jash Parekh authored Mar 30, 2021
1 parent bd716d9 commit 5464609
Showing 5 changed files with 22 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre_release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{pre_release}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}-{pre_release}
{major}.{minor}.{patch}

[bumpversion:file:gbq/__init__.py]

@@ -19,7 +19,7 @@ replace = version = {new_version}

[bumpversion:part:pre_release]
optional_value = final
values =
values =
final
dev
alpha
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,10 +4,21 @@ 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.1.1] - 2021-03-25
## [0.1.3] - 2021-03-25

Initial Release
### Fixed

* `dataclasses` and `typing_extensions` was not listed as a dependency for versions of Python < 3.6

## [0.1.2] - 2021-03-25

Fix Project Classifiers
### Fixed

Fix Project Classifiers

## [0.1.1] - 2021-03-25

### Added

Initial Release

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.2
# GBQ - 0.1.3

[![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]
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.2"
__version__ = "0.1.3"
__author__ = "Jash Parekh <jparekh1@wayfair.com>"
__all__ = [BigQuery] # type: ignore
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.2
version = 0.1.3
description = Python wrapper for interacting Google BigQuery.
long_description = file: README.md
long_description_content_type = text/markdown

0 comments on commit 5464609

Please sign in to comment.