Skip to content

Commit f427dbe

Browse files
committed
Release 0.4.15
1 parent 61f810c commit f427dbe

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
[PyPI History][1]
4+
5+
[1]: https://pypi.org/project/pybigquery/#history
6+
7+
## 0.4.15
8+
9+
2020-04-23
10+
11+
### Implementation Changes
12+
13+
- Prefer explicitly provided dataset over default dataset in lookup. ([#53](https://github.com/mxmzdlv/pybigquery/pull/53))
14+
- Use the provided `project_id` when using a service account. ([#52](https://github.com/mxmzdlv/pybigquery/pull/52))

release-procedure.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# pybigquery release procedure
2+
3+
* Checkout master branch
4+
5+
git fetch upstream master
6+
git checkout master
7+
git rebase -i upstream/master
8+
9+
* Update version number in `setup.py`
10+
11+
* Update `CHANGELOG.md`
12+
13+
* Commit and push
14+
15+
git commit -m "Release x.x.x"
16+
git push upstream master
17+
18+
* Build the package
19+
20+
git clean -xfd
21+
python setup.py register sdist bdist_wheel --universal
22+
23+
* Upload to test PyPI
24+
25+
twine upload --repository testpypi dist/*
26+
27+
* Try out test PyPI package
28+
29+
pip install --upgrade --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pybigquery
30+
31+
* Upload to PyPI
32+
33+
twine upload dist/*
34+
35+
* Tag release on GitHub
36+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def readme():
99

1010
setup(
1111
name="pybigquery",
12-
version='0.4.14',
12+
version='0.4.15',
1313
description="SQLAlchemy dialect for BigQuery",
1414
long_description=readme(),
1515
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)