mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
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.
This commit is contained in:
parent
9f035c5834
commit
4a6b9b325f
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
2
apg.go
2
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 {
|
||||
|
|
Loading…
Reference in a new issue