Bump to 0.15.0

This commit is contained in:
Paul Pfeister 2024-06-25 00:15:32 -04:00
parent 61ef8eb3c3
commit 6d6e17c22f
No known key found for this signature in database
GPG key ID: 70D33A96CBD7A994
2 changed files with 4 additions and 3 deletions

View file

@ -7,4 +7,4 @@ networks.
__shortname__ = "Sherlock"
__longname__ = "Sherlock: Find Usernames Across Social Networks"
__version__ = "0.14.4"
__version__ = "0.15.0"

View file

@ -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(