Skip to content

Commit 97f891d

Browse files
committed
v3
1 parent 85942b1 commit 97f891d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,22 @@ A random string generator and a passphrase (diceware) generator.
1010
- C compiler (e.g. GNU C Compiler)
1111
- libsodium headers (`libsodium-dev` on Debian)
1212

13-
## Installation and usage
13+
## Installation
1414
```sh
1515
make
1616

17-
# then as root - to install in /usr/local
17+
# then as root, to install in /usr/local
1818
make install
1919
```
2020

21+
## Usage
22+
```sh
23+
passwiz --help
24+
25+
# Generate a 6-word passphrase
26+
passphrase
27+
```
28+
2129
## License
2230
Copyright 2019-2023 Douglas Silva (0x9fd287d56ec107ac)
2331

passwiz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [[ $? -ne 0 ]]; then
3030
exit 1;
3131
fi
3232

33-
readonly VERSION_TAG="v2.1.0"
33+
readonly VERSION_TAG="v3.0.0"
3434

3535
# Constraint options
3636
readonly CONSTRAINT_DIGIT=1

0 commit comments

Comments
 (0)