From bc9ac5a1730105b853603496a4733f6cac1a80a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Tcho=C5=84?= Date: Wed, 16 Oct 2024 16:24:12 +0200 Subject: [PATCH] :green_heart: Fix-add "tool.semantic_release.commit_parser_options" config --- .github/workflows/ci-cd.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index c446c30..49932b0 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -112,7 +112,7 @@ jobs: run: pip install "pip<24.1" --force-reinstall # Rm when hikari 0.2.4 is out - name: Check-out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ssh-key: ${{ secrets.CONTINUOUS_DEPLOYMENT_KEY }} diff --git a/pyproject.toml b/pyproject.toml index 8c3e82d..112425f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ commit_parser = "emoji" # default EmojiCommitPa master = { publish = true } # Stable release branch (master) development = { publish = false } # Used for version checking only -[semantic_release.commit_parser_options] +[tool.semantic_release.commit_parser_options] major_tags = [ # CAUSE MAJOR VERSION BUMP 0.1.0 -> 1.0.0 ":boom:", # 💥 Introduce breaking changes. ]