From 6ea264eca312ddfcdc3967f4b6757c45954a63a2 Mon Sep 17 00:00:00 2001 From: KJHJason Date: Mon, 20 May 2024 20:28:59 +0800 Subject: [PATCH] gofmt and update ver --- configs/cmd_darwin.go | 1 + configs/cmd_linux.go | 1 + configs/cmd_windows.go | 1 + constants/constants.go | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configs/cmd_darwin.go b/configs/cmd_darwin.go index 2a262b1..ae44b3b 100644 --- a/configs/cmd_darwin.go +++ b/configs/cmd_darwin.go @@ -1,3 +1,4 @@ +//go:build darwin // +build darwin package configs diff --git a/configs/cmd_linux.go b/configs/cmd_linux.go index 94b7d38..c14ab9c 100644 --- a/configs/cmd_linux.go +++ b/configs/cmd_linux.go @@ -1,3 +1,4 @@ +//go:build linux // +build linux package configs diff --git a/configs/cmd_windows.go b/configs/cmd_windows.go index 5f46817..56d97c5 100644 --- a/configs/cmd_windows.go +++ b/configs/cmd_windows.go @@ -1,3 +1,4 @@ +//go:build windows // +build windows package configs diff --git a/constants/constants.go b/constants/constants.go index c3f3653..da103d9 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -8,7 +8,7 @@ import ( const ( DEBUG_MODE = false // Will save a copy of all JSON response from the API DEFAULT_PERMS = 0755 // Owner: rwx, Group: rx, Others: rx - VERSION = "1.1.2" + VERSION = "1.1.3" MAX_RETRY_DELAY = 3 MIN_RETRY_DELAY = 1 HTTP3_MAX_RETRY = 2