Skip to content

Commit a3407eb

Browse files
committed
drop dev prefix for release and a few misc changes
1 parent 72d8dca commit a3407eb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bin/restfulHarvest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
2-
import uvicorn
32
import argparse
3+
import uvicorn
44

55
parser = argparse.ArgumentParser()
66
parser.add_argument('-H', '--host', default='127.0.0.1', help='IP address to listen on default is 127.0.0.1')

restfulHarvest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
2-
import uvicorn
32
import argparse
3+
import uvicorn
44

55
parser = argparse.ArgumentParser()
66
parser.add_argument('-H', '--host', default='127.0.0.1', help='IP address to listen on default is 127.0.0.1')

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
classifiers=[
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
2626
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
2727
"Operating System :: OS Independent",
2828
],

theHarvester/lib/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class Core:
1313
@staticmethod
1414
def version() -> str:
15-
return '4.2.0dev'
15+
return '4.2.0'
1616

1717
@staticmethod
1818
def api_keys() -> dict:

0 commit comments

Comments
 (0)