diff --git a/Dockerfile b/Dockerfile index d7c23cbb..74aa5eb6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \ org.opencontainers.image.description="Darkweb Crawler Project" \ org.opencontainers.image.url="https://darc.jarryshaw.me/" \ org.opencontainers.image.source="https://github.com/JarryShaw/darc" \ - org.opencontainers.image.version="1.0.0" \ + org.opencontainers.image.version="1.0.1" \ org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License' STOPSIGNAL SIGINT diff --git a/darc/__init__.py b/darc/__init__.py index b33b5fb9..48fffe10 100644 --- a/darc/__init__.py +++ b/darc/__init__.py @@ -35,10 +35,10 @@ """ from darc.process import process as darc -from darc.process import register as register_hooks # pylint: disable=unused-import -from darc.proxy import register as register_proxy # pylint: disable=unused-import -from darc.signal import register as register_signal # pylint: disable=unused-import -from darc.sites import register as register_sites # pylint: disable=unused-import +from darc.process import register as register_hooks # pylint: disable=unused-import # noqa: F401 +from darc.proxy import register as register_proxy # pylint: disable=unused-import # noqa: F401 +from darc.signal import register as register_signal # pylint: disable=unused-import # noqa: F401 +from darc.sites import register as register_sites # pylint: disable=unused-import # noqa: F401 __all__ = ['darc'] -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/debug.dockerfile b/debug.dockerfile index 2886f94c..f3dc0911 100644 --- a/debug.dockerfile +++ b/debug.dockerfile @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \ org.opencontainers.image.description="Darkweb Crawler Project" \ org.opencontainers.image.url="https://darc.jarryshaw.me/" \ org.opencontainers.image.source="https://github.com/JarryShaw/darc" \ - org.opencontainers.image.version="1.0.0" \ + org.opencontainers.image.version="1.0.1" \ org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License' #EXPOSE 9050 diff --git a/docker/Dockerfile b/docker/Dockerfile index a55c3de3..db946551 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \ org.opencontainers.image.description="Darkweb Crawler Project" \ org.opencontainers.image.url="https://darc.jarryshaw.me/" \ org.opencontainers.image.source="https://github.com/JarryShaw/darc" \ - org.opencontainers.image.version="1.0.0" \ + org.opencontainers.image.version="1.0.1" \ org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License' STOPSIGNAL SIGINT diff --git a/docker/debug.dockerfile b/docker/debug.dockerfile index e8fa08ca..37e97be9 100644 --- a/docker/debug.dockerfile +++ b/docker/debug.dockerfile @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \ org.opencontainers.image.description="Darkweb Crawler Project" \ org.opencontainers.image.url="https://darc.jarryshaw.me/" \ org.opencontainers.image.source="https://github.com/JarryShaw/darc" \ - org.opencontainers.image.version="1.0.0" \ + org.opencontainers.image.version="1.0.1" \ org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License' #EXPOSE 9050 diff --git a/docs/source/conf.py b/docs/source/conf.py index a737b5c9..da8d0d28 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -37,7 +37,7 @@ author = 'Jarry Shaw' # The full version, including alpha/beta/rc tags -release = '1.0.0' +release = '1.0.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 44ae1845..29f80284 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ version_info = sys.version_info[:2] # version string -__version__ = '1.0.0' +__version__ = '1.0.1' # setup attributes attrs = dict( @@ -152,8 +152,8 @@ # zip_safe=True, )) except ImportError: - from distutils.core import setup - from distutils.command.build_py import build_py + from distutils.core import setup # type: ignore[no-redef] + from distutils.command.build_py import build_py # type: ignore[no-redef] class build(build_py): @@ -175,4 +175,4 @@ def run(self): # type: ignore[no-untyped-def] # set-up script for pip distribution setup(cmdclass={ 'build_py': build, -}, **attrs) +}, **attrs) # type: ignore[arg-type]