Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhener committed Oct 17, 2024
1 parent a58c351 commit 87d9328
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Version](https://img.shields.io/badge/Version-v0.4.1-green)
![Version](https://img.shields.io/badge/Version-v0.4.2-green)
[![GitHub](https://img.shields.io/github/license/patrickhener/goshs)](https://github.com/patrickhener/goshs/blob/master/LICENSE)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/patrickhener/goshs)
[![GitHub issues](https://img.shields.io/github/issues-raw/patrickhener/goshs)](https://github.com/patrickhener/goshs/issues)
Expand Down
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ import (
"github.com/patrickhener/goshs/utils"
)

// const goshsVersion = "v0.4.1"
const goshsVersion = "v0.4.0"
const goshsVersion = "v0.4.2"

var (
port = 8000
Expand Down
16 changes: 8 additions & 8 deletions update/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import (
const (
owner = "patrickhener"
repo = "goshs"
GOSHS_WINDOWS_64 = "goshs_windows_x86_64.tar.gz"
GOSHS_WINDOWS_32 = "goshs_windows_386.tar.gz"
GOSHS_WINDOWS_ARM = "goshs_windows_arm64.tar.gz"
GOSHS_LINUX_64 = "goshs_linux_x86_64.tar.gz"
GOSHS_LINUX_32 = "goshs_linux_386.tar.gz"
GOSHS_LINUX_ARM = "goshs_linux_arm64.tar.gz"
GOSHS_DARWIN_64 = "goshs_darwin_x86_64.tar.gz"
GOSHS_DARWIN_ARM = "goshs_darwin_arm64.tar.gz"
GOSHS_WINDOWS_64 = "goshs_windows_x86_64.exe"
GOSHS_WINDOWS_32 = "goshs_windows_386.exe"
GOSHS_WINDOWS_ARM = "goshs_windows_arm64.exe"
GOSHS_LINUX_64 = "goshs_linux_x86_64"
GOSHS_LINUX_32 = "goshs_linux_386"
GOSHS_LINUX_ARM = "goshs_linux_arm64"
GOSHS_DARWIN_64 = "goshs_darwin_x86_64"
GOSHS_DARWIN_ARM = "goshs_darwin_arm64"
)

func CheckForUpdates(version string) (bool, string) {
Expand Down

0 comments on commit 87d9328

Please sign in to comment.