diff --git a/CHANGELOG.md b/CHANGELOG.md index abd7603198b9361a425e2411322f944a01b35792..fb1519488852238a65d32a705ae4fac2586a0de0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this job will be documented in this file. ## [Unreleased] +## [0.2.0] - 2024-05-06 + +### Changed + +* Pipeline will now run only on default branch except if configured otherwise. + ## [0.1.1] - 2024-05-06 ### Changed diff --git a/pyproject.toml b/pyproject.toml index a1613f8f47388835b77dd37a3ccdf60ac4be2793..63a2e2cbbf82c71e985cad149fec2ae42d4c7c52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ allow-dirty = true commit = false config-file = "pyproject.toml" -current_version = "0.1.1" +current_version = "0.2.0" parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" replace = "{new_version}" search = "{current_version}" diff --git a/release-by-changelog.r2.yml b/release-by-changelog.r2.yml index 07f3808ddbfc4795248d5da99d3eb91808da0d0c..d4dbc387fdf9afd4a1b2f406a9a3885e95468a4b 100644 --- a/release-by-changelog.r2.yml +++ b/release-by-changelog.r2.yml @@ -5,7 +5,6 @@ files: data: description: "Run release-by-changelog on your repository" icon: 💾 - public: True labels: - Gitlab - Utilities diff --git a/release-by-changelog.yml b/release-by-changelog.yml index 48dbfc119f6040d026d4d85ab2f5686e3b41390f..82d14995dfaa64870314ac4a0ebbbd8249f12331 100644 --- a/release-by-changelog.yml +++ b/release-by-changelog.yml @@ -34,3 +34,5 @@ ruff: needs: - job: release_by_changelog_venv artifacts: true + rules: + - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'