From 1e93add7bdfffdd72a4e4764a4edd7dfe77e7760 Mon Sep 17 00:00:00 2001 From: max Date: Mon, 10 Mar 2025 14:05:22 -0500 Subject: [PATCH] Make version reflect build version --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 1f38b54..a9c6f4c 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ import ( var allowedCharacters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890`~!@#$%^&*()_+[]\\{}|;':,./<>?") const ( - Version = "1.3.3" + Version = "1.3.4" symbols = "`~!@#$%^&*()_+[]\\{}|;':,./<>?" chunkSize = 16 // The size of each chunk of the password to be generated by the worker goroutines )