From 4a6b9b325ff3b7fa32a894bba2ed6dd088c5660d Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sun, 17 Mar 2024 18:31:58 +0100 Subject: [PATCH] Update version number in README and apg.go for proper semver ruling The version number has been corrected to 1.1.0 from 1.0.1. This change was made in both the README.md file and the apg.go file. This update reflects the new algorithm for binary secrets introduction in version 1.1.0 instead of version 1.0.1. --- README.md | 2 +- apg.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa9acc2..9a8db24 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ Heads ``` ### Binary mode -Since v1.0.1 apg-go has a new algorithm for binary secrets. This is a very basic mode that will ignore +Since v1.1.0 apg-go has a new algorithm for binary secrets. This is a very basic mode that will ignore most of the available options, as it will only generate binary secrets with full 256 bits of randomness. The only available options for this mode are: `-f` to set the length of the returned secret in bytes, `-bh` to tell apg-go to output the generated secret in hexadecial representation and `-bn` to instruct diff --git a/apg.go b/apg.go index 7c9bf15..b2cdd63 100644 --- a/apg.go +++ b/apg.go @@ -5,7 +5,7 @@ package apg // VERSION represents the version string -const VERSION = "1.0.1" +const VERSION = "1.1.0" // Generator is the password generator type of the APG package type Generator struct {