Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tiboun committed Feb 5, 2024
1 parent ec5e3b7 commit 40c60cd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
commitizen:
name: cz_conventional_commits
tag_format: v$version
version: 0.4.3
version: 0.5.0
11 changes: 7 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine pyyaml
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
cat <<EOF > .pypirc
[pypi]
username = __token__
password = ${{ secrets.PYPI_APITOKEN }}
EOF
python setup.py sdist bdist_wheel
twine upload dist/*
twine check dist/*
twine upload --config-file .pypirc dist/*
3 changes: 3 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pypi]
username = __token__
password = pypi-AgEIcHlwaS5vcmcCJDY0ZjA3NzVmLTViYzgtNGFmZC05MDY4LTQ1NjhiOTU0NWI0OAACE1sxLFsiYnEtdGVzdC1raXQiXV0AAixbMixbIjcxYjliMTc2LTkzNjQtNDRlZC1hMDM3LWNhNDk5MGRmNzA4ZSJdXQAABiDktUUxYCTBHhf5LWgpR_hz3FJjXqt1yAgMwYbeHNmemA
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.5.0 (2024-02-03)

### Feat

- add clustering support to tables (thanks to @ckchow)

## v0.4.3 (2021-03-25)

### Fix
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,10 @@ Windows
Changelog
=========

0.5.0
-----
- add clustering support to tables (thanks to @ckchow)

0.4.3
-----
- rename project as python-bigquery-test-kit
Expand Down

0 comments on commit 40c60cd

Please sign in to comment.