From 69bf7e87e30374922f18e835d6e3b11b2447b65d Mon Sep 17 00:00:00 2001 From: Dave Yesland <41924355+DaveYesland@users.noreply.github.com> Date: Mon, 24 Apr 2023 09:07:13 -0700 Subject: [PATCH 1/2] Add option for SemVer level --- .github/workflows/python-deploy-pypi.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-deploy-pypi.yml b/.github/workflows/python-deploy-pypi.yml index 6cd405c8..893efa4a 100644 --- a/.github/workflows/python-deploy-pypi.yml +++ b/.github/workflows/python-deploy-pypi.yml @@ -7,8 +7,13 @@ name: PyPi and Docker Deploy -on: workflow_dispatch - +on: + workflow_dispatch: + inputs: + SemVer_level: + description: 'Semantic version level to use (patch,minor,major) https://python-poetry.org/docs/cli/' + required: true + default: 'patch' jobs: deploy: @@ -29,7 +34,7 @@ jobs: pip install poetry - name: Bump version run: | - poetry version patch + poetry version ${{ github.event.inputs.SemVer_level }} - name: Commit and push version changes run: | ver="$(poetry version -s)" From b8d8891abc070931658525b394172237bfa20710 Mon Sep 17 00:00:00 2001 From: Github-Actions <> Date: Mon, 24 Apr 2023 16:10:37 +0000 Subject: [PATCH 2/2] Release v1.1.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 98ace5fe..f72cdf55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pacu" -version = "1.1.5" +version = "1.1.6" description = "The AWS exploitation framework, designed for testing the security of Amazon Web Services environments." authors = ["Rhino Assessment Team "] license = "BSD-3"