From 917b455fdf9dae665d59420572c66d38df31f95a Mon Sep 17 00:00:00 2001 From: Christian Eland Date: Thu, 29 Oct 2020 16:53:28 -0300 Subject: [PATCH 1/2] ci(publish.yaml): fix publish cli removed `run` --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7e74fda..f933fb8 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -25,4 +25,4 @@ jobs: PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - poetry run publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD + poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD From 37d276015a996ec51612f68fee7624aa138d2589 Mon Sep 17 00:00:00 2001 From: Christian Eland Date: Thu, 29 Oct 2020 16:54:27 -0300 Subject: [PATCH 2/2] ci(publish): revert version to force new publish --- CHANGELOG.md | 10 ---------- pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b2261b..c5fefcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,3 @@ -## 0.8.3 (2020-10-29) - -### Refactor - -- **automator.py**: remove unecessary prints - -### Fix - -- **get_all_droplets**: Fix no pagination handling - ## 0.8.2 (2020-10-25) ### Refactor diff --git a/pyproject.toml b/pyproject.toml index 9435329..305ba57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydoautomator" -version = "0.8.3" +version = "0.8.2" description = "The Python lib for digital ocean automation" authors = ["Christian Eland "] license = "Apache-2.0" @@ -38,7 +38,7 @@ mkdocs-material = "^6.1.0" [tool.commitizen] name = "cz_conventional_commits" -version = "0.8.3" +version = "0.8.2" tag_format = "$version" version_files = [ "pyproject.toml:version"