Skip to content

Commit 37f475a

Browse files
authored
Merge pull request #22 from mrf345/testing
Fix progress percent limit, and pipeline failure
2 parents fc02827 + da25368 commit 37f475a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-go@v5
1616
with:
17-
go-version: '>=1.22'
17+
go-version: '1.22'
1818
cache-dependency-path: |
1919
go.sum
2020
internal/utils/go.sum

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var rootCmd = &cobra.Command{
1414
Use: "safelock-cli",
1515
Short: "Simple tool to encrypt/decrypt files with AES encryption",
1616
Long: "Simple command-line tool to encrypt and decrypt files with AES encryption",
17-
Version: "0.6.0",
17+
Version: "0.6.1",
1818
CompletionOptions: cobra.CompletionOptions{
1919
DisableDefaultCmd: true,
2020
},

safelock/reader.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func newReader(
3737
aead: aead,
3838
cancel: cancel,
3939
start: start,
40-
end: 100.0,
40+
end: 99.99,
4141
},
4242
}
4343
}

safelock/writer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func newWriter(
2727
pwd: pwd,
2828
cancel: cancel,
2929
start: start,
30-
end: 100.0,
30+
end: 99.99,
3131
},
3232
}
3333
}

0 commit comments

Comments
 (0)