Browse Source

Update cli version number and doc, add breaking change

Fixes: https://github.com/lesspass/lesspass/issues/543
pull/544/head
Guillaume Vincent 4 years ago
parent
commit
ce8f4a294c
3 changed files with 2 additions and 9 deletions
  1. +1
    -0
      cli/README.md
  2. +0
    -8
      cli/lesspass/cli.py
  3. +1
    -1
      cli/lesspass/version.py

+ 1
- 0
cli/README.md View File

@@ -25,6 +25,7 @@
-L, --length int (default 16, max 35)
-C, --counter int (default 1)
-p, --prompt interactively prompt SITE and LOGIN (prevent leak to shell history)
--no-fingerprint hide visual fingerprint of the master password when you type
--no-lowercase remove lowercase from password
--no-uppercase remove uppercase from password
--no-digits remove digits from password


+ 0
- 8
cli/lesspass/cli.py View File

@@ -91,14 +91,6 @@ def parse_args(args):
action="store_true",
help="hide visual fingerprint of the master password when you type",
)
parser.add_argument(
"-f",
"--fingerprint",
dest="fingerprint",
action="store_true",
help="show visual fingerprint of password as you type it"
)

lowercase_group = parser.add_mutually_exclusive_group()
lowercase_group.add_argument(
"-l",


+ 1
- 1
cli/lesspass/version.py View File

@@ -1 +1 @@
__version__ = "9.3.0"
__version__ = "10.0.0"

Loading…
Cancel
Save