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

Commit

Permalink
🚀 Bumping Releases to prepare for 1.1.0 Frigg release (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickLaabs committed Mar 15, 2024
1 parent f7b0579 commit a703f1e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/release_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ assignees: ''
* [ ] Update Versions referenced in the README.md
* [ ] Test everything :)
* [ ] If everything is fine, push local changes to the prevs. created feature-branch
* [ ] merge back to main
* [ ] git tag x.x.x && git push --tags
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.0'
go-version: '1.22.1'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ But for now, the following needs to be done manually:
#### Get the *frigg* cli:
Get the binary using go:
```
go install github.com/PatrickLaabs/frigg@latest
go install github.com/PatrickLaabs/frigg@1.1.0
```

```
curl -L -o frigg.tar.gz https://github.com/PatrickLaabs/frigg/releases/download/1.0.3/frigg_1.0.3_darwin_arm64.tar.gz
curl -L -o frigg.tar.gz https://github.com/PatrickLaabs/frigg/releases/download/1.1.0/frigg_1.1.0_darwin_arm64.tar.gz
tar -xf frigg.tar.gz
chmod +x frigg
./frigg version
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/PatrickLaabs/frigg

go 1.22.0
go 1.22.1

require (
github.com/BurntSushi/toml v1.3.2
Expand Down
4 changes: 2 additions & 2 deletions pkg/consts/consts.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package consts

// FriggVersion and VersionPreRelease constants are used to define the Version the Frigg CLI outputs on ./frigg version
const FriggVersion = "1.0.3"
const FriggVersion = "1.1.0"
const VersionPreRelease = ""
const GithubCliVersion = "2.45.0"
const KubectlVersion = "1.29.2"
const ClusterctlVersion = "1.6.2"
const ClusterctlVersion = "1.6.3"
const K9sVersion = "0.32.3"

// KubeadmVersion , etc, Version for clusterctl bootstrapping
Expand Down

0 comments on commit a703f1e

Please sign in to comment.