diff --git a/.github/workflows/update_python_requirements.yml b/.github/workflows/update_python_requirements.yml index e13ae28..da472d6 100644 --- a/.github/workflows/update_python_requirements.yml +++ b/.github/workflows/update_python_requirements.yml @@ -46,6 +46,8 @@ jobs: echo 'No changes to commit on this run' exit 0 else - git commit -m "build(deps): Bump requirements.txt" + poetry version patch + git add pyproject.toml + git commit -m "build(deps): Bump requirements.txt and poetry version" git push fi diff --git a/pyproject.toml b/pyproject.toml index 8d09507..a61ba58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "atsdk" -version = "0.2.3" +version = "0.2.4" description = "Python SDK for atPlatform" authors = ["Umang Shah ","Chris Swan "] maintainers = ["Chris Swan "]