mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-24 21:03:04 +00:00
Bump to 0.15.0
This commit is contained in:
parent
61ef8eb3c3
commit
6d6e17c22f
2 changed files with 4 additions and 3 deletions
|
@ -7,4 +7,4 @@ networks.
|
|||
|
||||
__shortname__ = "Sherlock"
|
||||
__longname__ = "Sherlock: Find Usernames Across Social Networks"
|
||||
__version__ = "0.14.4"
|
||||
__version__ = "0.15.0"
|
||||
|
|
|
@ -26,7 +26,8 @@ del __version__
|
|||
|
||||
from .__init__ import ( # noqa: E402
|
||||
__longname__,
|
||||
__version__
|
||||
__shortname__,
|
||||
__version__,
|
||||
)
|
||||
|
||||
from requests_futures.sessions import FuturesSession # noqa: E402
|
||||
|
@ -523,7 +524,7 @@ def main():
|
|||
parser.add_argument(
|
||||
"--version",
|
||||
action="version",
|
||||
version=f"Sherlock v{__version__}",
|
||||
version=f"{__shortname__} v{__version__}",
|
||||
help="Display version information and dependencies.",
|
||||
)
|
||||
parser.add_argument(
|
||||
|
|
Loading…
Reference in a new issue