From 219d6374338ed9a1475b4f09b0d85212376f11e0 Mon Sep 17 00:00:00 2001 From: HacKan Date: Tue, 25 Sep 2018 01:03:03 -0300 Subject: [PATCH] Bump version --- man/passphrase.1 | 4 ++-- man/passphrase.md | 2 +- passphrase/__main__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/man/passphrase.1 b/man/passphrase.1 index 37f2d74..db959fb 100644 --- a/man/passphrase.1 +++ b/man/passphrase.1 @@ -1,11 +1,11 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.5. -.TH PASSPHRASE "1" "March 2018" "Passphrase v1.2.0" "Passphrase" +.TH PASSPHRASE "1" "March 2018" "Passphrase v1.2.1" "Passphrase" .SH NAME Passphrase \- Tool to generate cryptographically secure passphrases and passwords .SH DESCRIPTION usage: passphrase [\-h] [\-\-version] [\-\-insecure] [\-\-no\-newline] [\-m] [\-v] [\-e ENTROPYBITS] [\-\-uuid4] [\-\-coin] [\-p [PASSWORD]] [\-\-use\-uppercase [USE_UPPERCASE]] [\-\-use\-lowercase [USE_LOWERCASE]] [\-\-use\-digits] [\-\-use\-alphanumeric] [\-\-use\-punctuation] [\-w WORDS] [\-n NUMBERS] [\-s SEPARATOR] [\-o OUTPUT] [\-i INPUT] [\-d] .PP -Passphrase v1.2.0 +Passphrase v1.2.1 by HacKan (https://hackan.net) FOSS under GNU GPL v3.0 or newer .PP Generates a cryptographically secure passphrase, based on a wordlist, or a diff --git a/man/passphrase.md b/man/passphrase.md index 603cff3..56daaea 100644 --- a/man/passphrase.md +++ b/man/passphrase.md @@ -15,7 +15,7 @@ usage: passphrase [-h] [--version] [--insecure] [--no-newline] [-m] [-v] [--use-punctuation] [-w WORDS] [-n NUMBERS] [-s SEPARATOR] [-o OUTPUT] [-i INPUT] [-d] ``` -Passphrase v1.2.0 by HacKan (https://hackan.net) FOSS under GNU GPL v3.0 or newer +Passphrase v1.2.1 by HacKan (https://hackan.net) FOSS under GNU GPL v3.0 or newer Generates a cryptographically secure passphrase, based on a wordlist, or a password, and prints it to standard output. diff --git a/passphrase/__main__.py b/passphrase/__main__.py index 415cc52..29a923a 100644 --- a/passphrase/__main__.py +++ b/passphrase/__main__.py @@ -39,7 +39,7 @@ __author__ = 'HacKan' __license__ = 'GNU GPL 3.0+' -__version__ = '1.2.0' +__version__ = '1.2.1' __version_string__ = ( 'Passphrase v{}\nby HacKan (https://hackan.net) FOSS ' 'under GNU GPL v3.0 or newer'.format(__version__)