From 72f4797428c37f6a5e33497733b18a1636ecb1bc Mon Sep 17 00:00:00 2001 From: max Date: Fri, 1 Nov 2024 14:39:24 -0500 Subject: [PATCH] Fix version displayed by -v --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8478e94..1f38b54 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( var allowedCharacters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890`~!@#$%^&*()_+[]\\{}|;':,./<>?") const ( - Version = "1.3.1" + Version = "1.3.3" symbols = "`~!@#$%^&*()_+[]\\{}|;':,./<>?" chunkSize = 16 // The size of each chunk of the password to be generated by the worker goroutines )