diff --git a/.cz.yaml b/.cz.yaml index c22216f..e61a814 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -1,4 +1,4 @@ commitizen: name: cz_conventional_commits tag_format: v$version - version: 0.4.3 + version: 0.5.0 diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 1d0172b..9042bbe 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -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 < .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/* diff --git a/.pypirc b/.pypirc new file mode 100644 index 0000000..c907f1d --- /dev/null +++ b/.pypirc @@ -0,0 +1,3 @@ +[pypi] +username = __token__ +password = pypi-AgEIcHlwaS5vcmcCJDY0ZjA3NzVmLTViYzgtNGFmZC05MDY4LTQ1NjhiOTU0NWI0OAACE1sxLFsiYnEtdGVzdC1raXQiXV0AAixbMixbIjcxYjliMTc2LTkzNjQtNDRlZC1hMDM3LWNhNDk5MGRmNzA4ZSJdXQAABiDktUUxYCTBHhf5LWgpR_hz3FJjXqt1yAgMwYbeHNmemA \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e31336..1a751eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 1cb7fd3..b691ffa 100644 --- a/README.md +++ b/README.md @@ -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