From f916ba00592d16f89b54c24964194317a3adbe32 Mon Sep 17 00:00:00 2001 From: Evan Burkey Date: Mon, 7 Jul 2025 11:32:38 -0700 Subject: [PATCH] fix version check --- version.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/version.go b/version.go index bcf6939..f6bfa93 100644 --- a/version.go +++ b/version.go @@ -7,10 +7,8 @@ import ( "regexp" ) -const ( - version = "1.0.4" - versionUrl = "https://git.burkey.co/eburk/epochcli/raw/branch/master/version.go" -) +const version = "1.0.5" +const versionUrl = "https://git.burkey.co/eburk/epochcli/raw/branch/master/version.go" func needUpdate() (bool, error) { resp, err := http.Get(versionUrl)