Skip to content

Commit

Permalink
Bump version: 1.0.1 → 1.0.2 (#478)
Browse files Browse the repository at this point in the history
Co-authored-by: Jash Parekh <jp900u>
  • Loading branch information
jashparekh authored Oct 10, 2023
1 parent ebe0768 commit 8a9b0e4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 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 = 1.0.1
current_version = 1.0.2
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]

## [1.0.2] - 2023-10-10

### Changed
- Update dependencies

## [1.0.1] - 2022-12-27

### Changed
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 - 1.0.1
# GBQ - 1.0.2

[![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__ = "1.0.1"
__version__ = "1.0.2"
__author__ = "Jash Parekh <jparekh1@wayfair.com>"
__all__ = [BigQuery] # type: ignore
13 changes: 12 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,16 @@

"pip_requirements": {
"fileMatch": ["(^|/)([\\w-]*)requirements[-\\w]*\\.(txt|pip)$"]
}
},

"packageRules": [
{
"postUpgradeTasks": {
"commands": ["bash docker/lock_requirements.sh"],
"fileFilters": ["requirements.lock"],
"executionMode": "branch"
},
"matchManagers": ["pip_requirements"]
}
]
}
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 = jparekh1@wayfair.com
version = 1.0.1
version = 1.0.2
description = Python wrapper for interacting Google BigQuery.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 8a9b0e4

Please sign in to comment.