WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit abff1af

Browse files
committed
Release v4.0.0
1 parent 481345a commit abff1af

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
ghcr.io/${{ github.repository }}
5959
flavor: |
6060
latest=true
61-
tags: ${{ github.ref_type == 'tag' && 'type=semver,pattern={{version}}' || '' }}
61+
tags: ${{ github.ref_type == 'tag' && 'type=semver,pattern=v{{version}}' || '' }}
6262

6363
- name: Build and push Docker image
6464
id: push

CONTRIBUTION.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ The following steps are needed to cut a release (They assume that you are on mas
5151
5. Commit your changes locally.
5252
6. Create a git tag with the following command: `git tag -a <semantic version number> -m "<semantic version number>" <your-last-commit-sha>`
5353
7. Push your commit and tag with `git push --follow-tags`
54-
8. This should trigger the [pipeline on circleci](https://circleci.com/gh/Praqma/workflows/helmsman) which eventually releases to Github and dockerhub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.18.0&x2=0)](https://github.com/mkubaczyk/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master)
1+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v4.0.0&x2=0)](https://github.com/mkubaczyk/helmsman/releases)
22

33
![helmsman-logo](docs/images/helmsman.png)
44

internal/app/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
const (
99
helmBin = "helm"
1010
kubectlBin = "kubectl"
11-
appVersion = "v3.18.0"
11+
appVersion = "v4.0.0"
1212
tempFilesDir = ".helmsman-tmp"
1313
defaultContextName = "default"
1414
resourcePool = 10

release-notes.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
# v3.18.0
1+
# v4.0.0
22

33
## New feature
44

55
## Fixes and improvements
66

7-
- Create namespace with labels & annotations in a single request (#935)
8-
- Update go to 1.24 (#945)
7+
## Changes
8+
9+
- Changed Docker image name to ghcr.io/mkubaczyk/helmsman
10+
- Changed CircleCI-based build to Github Actions

0 commit comments

Comments
 (0)