From 4f5a9fdef64bc853840d41a5c84bb867f37379fb Mon Sep 17 00:00:00 2001 From: thomas-hirsch Date: Tue, 14 Nov 2023 13:40:32 +0000 Subject: [PATCH] use pypi publish v2 --- .github/workflows/poetry-pypi-release.yml | 2 +- CHANGELOG.md | 4 ++++ pydbtools/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/poetry-pypi-release.yml b/.github/workflows/poetry-pypi-release.yml index 8dd2b13..ad30308 100644 --- a/.github/workflows/poetry-pypi-release.yml +++ b/.github/workflows/poetry-pypi-release.yml @@ -14,5 +14,5 @@ jobs: with: fetch-depth: 1 - name: release to PyPI - uses: moj-analytical-services/actions-poetry-pypi-release@v1 + uses: moj-analytical-services/actions-poetry-pypi-release@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index bdf8c14..afd18eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v5.5.11 - 2023-11-14 + +- Use new pypi publish action + ## v5.5.10 - 2023-11-10 - Update dependencies for security diff --git a/pydbtools/__init__.py b/pydbtools/__init__.py index 5597ce1..99da4f3 100644 --- a/pydbtools/__init__.py +++ b/pydbtools/__init__.py @@ -33,4 +33,4 @@ from .utils import s3_path_join # noqa: F401 -__version__ = "5.5.10" +__version__ = "5.5.11" diff --git a/pyproject.toml b/pyproject.toml index 7491c56..606b066 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "pydbtools" -version = "5.5.10" +version = "5.5.11" description = "A python package to query data via amazon athena and bring it into a pandas df using aws-wrangler." license = "MIT" authors = ["Karik Isichei "]