File tree Expand file tree Collapse file tree 7 files changed +16
-12
lines changed Expand file tree Collapse file tree 7 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 15
15
- name : Set up Go
16
16
uses : actions/setup-go@v4
17
17
with :
18
- go-version : " 1.20 "
18
+ go-version : " 1.21 "
19
19
- name : Install dependencies
20
20
run : go mod download && go mod tidy
21
21
- name : Install Azure CLI
Original file line number Diff line number Diff line change
1
+ # v1.3.1
2
+
3
+ ## Bug Fixes
4
+
5
+ ### Package
6
+ - Bump package version to ` 1.3.1 ` to fix an issue with the ` 1.3.0 ` release.
7
+
8
+ ### Installer
9
+ - Remove ` v ` prefix from installer URL path to accommodate for the new build process.
10
+
1
11
# v1.3.0
2
12
## Features
3
13
Original file line number Diff line number Diff line change @@ -29,10 +29,7 @@ Keyfactor Command Utility (kfutil) is open source and there is **no SLA** for th
29
29
30
30
#### Linux/MacOS
31
31
``` bash
32
- curl -fsSL -o get-kfutil.sh https://raw.githubusercontent.com/Keyfactor/kfutil/main/install.sh
33
- chmod +x get-kfutil.sh
34
- # Install kfutil to $HOME/.local/bin. Use -h for help and examples.
35
- ./get-kfutil.sh
32
+ bash <( curl -s https://raw.githubusercontent.com/Keyfactor/kfutil/main/install.sh)
36
33
````
37
34
38
35
# ### Windows (or Linux/MacOS if PowerShell is preferred)
Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ function Get-BinaryAndSum {
254
254
[string ]$Architecture
255
255
)
256
256
257
- $ReleaseUrl = " https://github.com/Keyfactor/${BinaryName} /releases/download/v ${Version} "
257
+ $ReleaseUrl = " https://github.com/Keyfactor/${BinaryName} /releases/download/${Version} "
258
258
$Dist = " ${BinaryName} _${Version} _${OS} _${Architecture} .zip"
259
259
260
260
$DistUrl = " ${ReleaseUrl} /${Dist} "
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ checkBinaryInstalledVersion() {
186
186
downloadFile () {
187
187
local download_url
188
188
local base_url
189
- base_url=" https://github.com/Keyfactor/${BINARY_NAME} /releases/download/v ${VERSION} "
189
+ base_url=" https://github.com/Keyfactor/${BINARY_NAME} /releases/download/${VERSION} "
190
190
KFUTIL_DIST=" kfutil_${VERSION} _${OS} _${ARCH} .zip"
191
191
download_url=" ${base_url} /${KFUTIL_DIST} "
192
192
checksum_url=" ${base_url} /kfutil_${VERSION} _SHA256SUMS"
Original file line number Diff line number Diff line change 14
14
15
15
package version
16
16
17
- const VERSION = "v1.2 .1"
17
+ const VERSION = "v1.3 .1"
Original file line number Diff line number Diff line change 13
13
14
14
#### Linux/MacOS
15
15
``` bash
16
- curl -fsSL -o get-kfutil.sh https://raw.githubusercontent.com/Keyfactor/kfutil/main/install.sh
17
- chmod +x get-kfutil.sh
18
- # Install kfutil to $HOME/.local/bin. Use -h for help and examples.
19
- ./get-kfutil.sh
16
+ bash <( curl -s https://raw.githubusercontent.com/Keyfactor/kfutil/main/install.sh)
20
17
````
21
18
22
19
# ### Windows (or Linux/MacOS if PowerShell is preferred)
You can’t perform that action at this time.
0 commit comments