Skip to content

Commit d94c726

Browse files
committed
bumped version to 1.0.1
1 parent 31682af commit d94c726

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \
44
org.opencontainers.image.description="Darkweb Crawler Project" \
55
org.opencontainers.image.url="https://darc.jarryshaw.me/" \
66
org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
7-
org.opencontainers.image.version="1.0.0" \
7+
org.opencontainers.image.version="1.0.1" \
88
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
99

1010
STOPSIGNAL SIGINT

darc/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
"""
3636

3737
from darc.process import process as darc
38-
from darc.process import register as register_hooks # pylint: disable=unused-import
39-
from darc.proxy import register as register_proxy # pylint: disable=unused-import
40-
from darc.signal import register as register_signal # pylint: disable=unused-import
41-
from darc.sites import register as register_sites # pylint: disable=unused-import
38+
from darc.process import register as register_hooks # pylint: disable=unused-import # noqa: F401
39+
from darc.proxy import register as register_proxy # pylint: disable=unused-import # noqa: F401
40+
from darc.signal import register as register_signal # pylint: disable=unused-import # noqa: F401
41+
from darc.sites import register as register_sites # pylint: disable=unused-import # noqa: F401
4242

4343
__all__ = ['darc']
44-
__version__ = '1.0.0'
44+
__version__ = '1.0.1'

debug.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \
1515
org.opencontainers.image.description="Darkweb Crawler Project" \
1616
org.opencontainers.image.url="https://darc.jarryshaw.me/" \
1717
org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
18-
org.opencontainers.image.version="1.0.0" \
18+
org.opencontainers.image.version="1.0.1" \
1919
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
2020
#EXPOSE 9050
2121

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \
44
org.opencontainers.image.description="Darkweb Crawler Project" \
55
org.opencontainers.image.url="https://darc.jarryshaw.me/" \
66
org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
7-
org.opencontainers.image.version="1.0.0" \
7+
org.opencontainers.image.version="1.0.1" \
88
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
99

1010
STOPSIGNAL SIGINT

docker/debug.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \
1515
org.opencontainers.image.description="Darkweb Crawler Project" \
1616
org.opencontainers.image.url="https://darc.jarryshaw.me/" \
1717
org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
18-
org.opencontainers.image.version="1.0.0" \
18+
org.opencontainers.image.version="1.0.1" \
1919
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
2020
#EXPOSE 9050
2121

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
author = 'Jarry Shaw'
3838

3939
# The full version, including alpha/beta/rc tags
40-
release = '1.0.0'
40+
release = '1.0.1'
4141

4242

4343
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
version_info = sys.version_info[:2]
2727

2828
# version string
29-
__version__ = '1.0.0'
29+
__version__ = '1.0.1'
3030

3131
# setup attributes
3232
attrs = dict(
@@ -152,8 +152,8 @@
152152
# zip_safe=True,
153153
))
154154
except ImportError:
155-
from distutils.core import setup
156-
from distutils.command.build_py import build_py
155+
from distutils.core import setup # type: ignore[no-redef]
156+
from distutils.command.build_py import build_py # type: ignore[no-redef]
157157

158158

159159
class build(build_py):
@@ -175,4 +175,4 @@ def run(self): # type: ignore[no-untyped-def]
175175
# set-up script for pip distribution
176176
setup(cmdclass={
177177
'build_py': build,
178-
}, **attrs)
178+
}, **attrs) # type: ignore[arg-type]

0 commit comments

Comments
 (0)