Skip to content

Commit

Permalink
Bump to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeister committed Jun 25, 2024
1 parent 61ef8eb commit 6d6e17c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sherlock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

__shortname__ = "Sherlock"
__longname__ = "Sherlock: Find Usernames Across Social Networks"
__version__ = "0.14.4"
__version__ = "0.15.0"
5 changes: 3 additions & 2 deletions sherlock/sherlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@

from .__init__ import ( # noqa: E402
__longname__,
__version__
__shortname__,
__version__,
)

from requests_futures.sessions import FuturesSession # noqa: E402
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit 6d6e17c

Please sign in to comment.