From 634752a31c39aa07b4ebe30f0e802e3dc27346bb Mon Sep 17 00:00:00 2001 From: tiboun Date: Sat, 3 Feb 2024 00:52:33 +0100 Subject: [PATCH] update changelog --- .github/workflows/python-publish.yml | 9 ++++++--- CHANGELOG.md | 6 ++++++ README.md | 4 ++++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 1d0172b..e23e01b 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 check dist/* twine upload dist/* 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