diff --git a/.cz.yaml b/.cz.yaml index 9536854..817dbb8 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -106,7 +106,7 @@ commitizen: name: cz_customize tag_format: v$version update_changelog_on_bump: false - version: 0.23.3 + version: 0.23.4 version_files: - internal/cli/app.go:Version - gitlab/templates/sheriff.gitlab-ci.yml:sheriff:v diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5391b..d27c5b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.23.4 (2025-01-07) + +### Refactor + +- **#9**: move gitlab logic to specific repository package + ## v0.23.3 (2025-01-07) ### Technical diff --git a/README.md b/README.md index 64c293c..135a34b 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ To run sheriff on Gitlab, we suggest the following set-up: 2. Create a CI file in this repository which extends from our template ```yaml include: - - remote: 'https://raw.githubusercontent.com/elementsinteractive/sheriff/refs/tags/v0.23.3/gitlab/templates/sheriff.gitlab-ci.yml' + - remote: 'https://raw.githubusercontent.com/elementsinteractive/sheriff/refs/tags/v0.23.4/gitlab/templates/sheriff.gitlab-ci.yml' sheriff: extends: .sheriff diff --git a/gitlab/templates/sheriff.gitlab-ci.yml b/gitlab/templates/sheriff.gitlab-ci.yml index 889ab38..a65db15 100644 --- a/gitlab/templates/sheriff.gitlab-ci.yml +++ b/gitlab/templates/sheriff.gitlab-ci.yml @@ -11,7 +11,7 @@ variables: .sheriff: stage: deploy image: - name: elementsinteractive/sheriff:v0.23.3 + name: elementsinteractive/sheriff:v0.23.4 entrypoint: [""] resource_group: production rules: diff --git a/internal/cli/app.go b/internal/cli/app.go index c3211d4..54597d6 100644 --- a/internal/cli/app.go +++ b/internal/cli/app.go @@ -9,7 +9,7 @@ func App(args []string) { app := &cli.App{ Name: "sheriff", Usage: "Fighting dangerous dangerous dependencies since 2024.", - Version: "0.23.3", + Version: "0.23.4", Commands: []*cli.Command{ { Name: "patrol",