From dd65d6254e9f74f3b5f921df161a46de0b2bd8d3 Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Tue, 9 Jul 2024 09:42:35 +0200 Subject: [PATCH 1/3] mraba/update-python_publish-workflow --- .github/workflows/python-publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 23116e7a..0a9f22bd 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -30,12 +30,12 @@ jobs: python-version: '3.x' - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install build + python -m pip install -U uv + python -m uv pip install -U hatch - name: Build package - run: python -m build + run: python -m hatch build --clean - name: Publish package - uses: pypa/gh-action-pypi-publish@e53eb8b103ffcb59469888563dc324e3c8ba6f06 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} From 98cead0dac06c529e05a3b9657eef4e11a0807a3 Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Tue, 9 Jul 2024 10:12:04 +0200 Subject: [PATCH 2/3] mraba/update-python_publish-workflow: update changelog for v1.6.1 --- DESCRIPTION.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 79971c53..9cb4dc62 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -9,6 +9,10 @@ Source code is also available at: # Release Notes +- v1.6.1(July 9, 2024) + + - Update workflow with pypi publishing + - v1.6.0(July 8, 2024) - support for installing with SQLAlchemy 2.0.x From 68c6ee84cd43d70833be877e2c4f4db5275c4dcf Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Tue, 9 Jul 2024 10:13:13 +0200 Subject: [PATCH 3/3] mraba/update-python_publish-workflow: version bump to v1.6.1 --- DESCRIPTION.md | 2 +- src/snowflake/sqlalchemy/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 9cb4dc62..38cd70f7 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -11,7 +11,7 @@ Source code is also available at: - v1.6.1(July 9, 2024) - - Update workflow with pypi publishing + - Update internal project workflow with pypi publishing - v1.6.0(July 8, 2024) diff --git a/src/snowflake/sqlalchemy/version.py b/src/snowflake/sqlalchemy/version.py index 56509b7d..d90f706b 100644 --- a/src/snowflake/sqlalchemy/version.py +++ b/src/snowflake/sqlalchemy/version.py @@ -3,4 +3,4 @@ # # Update this for the versions # Don't change the forth version number from None -VERSION = "1.6.0" +VERSION = "1.6.1"