Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit a703f1e

Browse files
authored
🚀 Bumping Releases to prepare for 1.1.0 Frigg release (#89)
1 parent f7b0579 commit a703f1e

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/ISSUE_TEMPLATE/release_tracking.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ assignees: ''
1919
* [ ] Update Versions referenced in the README.md
2020
* [ ] Test everything :)
2121
* [ ] If everything is fine, push local changes to the prevs. created feature-branch
22+
* [ ] merge back to main
2223
* [ ] git tag x.x.x && git push --tags

.github/workflows/goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Go
3737
uses: actions/setup-go@v5
3838
with:
39-
go-version: '1.22.0'
39+
go-version: '1.22.1'
4040
- name: Run GoReleaser
4141
uses: goreleaser/goreleaser-action@v5
4242
with:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ But for now, the following needs to be done manually:
4545
#### Get the *frigg* cli:
4646
Get the binary using go:
4747
```
48-
go install github.com/PatrickLaabs/frigg@latest
48+
go install github.com/PatrickLaabs/frigg@1.1.0
4949
```
5050

5151
```
52-
curl -L -o frigg.tar.gz https://github.com/PatrickLaabs/frigg/releases/download/1.0.3/frigg_1.0.3_darwin_arm64.tar.gz
52+
curl -L -o frigg.tar.gz https://github.com/PatrickLaabs/frigg/releases/download/1.1.0/frigg_1.1.0_darwin_arm64.tar.gz
5353
tar -xf frigg.tar.gz
5454
chmod +x frigg
5555
./frigg version

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/PatrickLaabs/frigg
22

3-
go 1.22.0
3+
go 1.22.1
44

55
require (
66
github.com/BurntSushi/toml v1.3.2

pkg/consts/consts.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package consts
22

33
// FriggVersion and VersionPreRelease constants are used to define the Version the Frigg CLI outputs on ./frigg version
4-
const FriggVersion = "1.0.3"
4+
const FriggVersion = "1.1.0"
55
const VersionPreRelease = ""
66
const GithubCliVersion = "2.45.0"
77
const KubectlVersion = "1.29.2"
8-
const ClusterctlVersion = "1.6.2"
8+
const ClusterctlVersion = "1.6.3"
99
const K9sVersion = "0.32.3"
1010

1111
// KubeadmVersion , etc, Version for clusterctl bootstrapping

0 commit comments

Comments
 (0)