File tree Expand file tree Collapse file tree 3 files changed +51
-1
lines changed Expand file tree Collapse file tree 3 files changed +51
-1
lines changed Original file line number Diff line number Diff line change 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 ) )
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ def readme():
99
1010setup (
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" ,
You can’t perform that action at this time.
0 commit comments