Skip to content

Commit

Permalink
drop dev prefix for release and a few misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
L1ghtn1ng committed Aug 14, 2022
1 parent 72d8dca commit a3407eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/restfulHarvest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
import uvicorn
import argparse
import uvicorn

parser = argparse.ArgumentParser()
parser.add_argument('-H', '--host', default='127.0.0.1', help='IP address to listen on default is 127.0.0.1')
Expand Down
2 changes: 1 addition & 1 deletion restfulHarvest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
import uvicorn
import argparse
import uvicorn

parser = argparse.ArgumentParser()
parser.add_argument('-H', '--host', default='127.0.0.1', help='IP address to listen on default is 127.0.0.1')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
Expand Down
2 changes: 1 addition & 1 deletion theHarvester/lib/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class Core:
@staticmethod
def version() -> str:
return '4.2.0dev'
return '4.2.0'

@staticmethod
def api_keys() -> dict:
Expand Down

0 comments on commit a3407eb

Please sign in to comment.