diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ac647bb..44cee3c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.13 +current_version = 1.0.14 commit = True tag = False diff --git a/.github/workflows/version-controller.yml b/.github/workflows/version-controller.yml index 5724989..5df11a3 100644 --- a/.github/workflows/version-controller.yml +++ b/.github/workflows/version-controller.yml @@ -105,7 +105,7 @@ jobs: const head = '${{ steps.determine_branch.outputs.current_branch }}'; const base = '${{ steps.determine_branch.outputs.next_branch }}'; const version = '${{ steps.create_tag.outputs.tag_name }}'; - const title = `From ${head} → Bump version: ${version} into ${base}`; + const title = `🔖 From ${head} → Bump version: ${version} into ${base}`; const body = `Automatically created pull request for release ${version} into ${base} branch.`; const { data: existingPRs } = await github.rest.pulls.list({ diff --git a/pyproject.toml b/pyproject.toml index 16e97b5..7389f0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scripts" -version = "1.0.13" +version = "1.0.14" description = "CICD Core Scripts" authors = ["B "] license = "Apache 2.0" @@ -71,5 +71,5 @@ ensure_newline_before_comments = true rcfile = ".pylintrc" [build-system] -requires = ["poetry-core>=1.0.13"] +requires = ["poetry-core>=1.0.14"] build-backend = "poetry.core.masonry.api"