Skip to content

Commit

Permalink
bumped version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JarryShaw committed Jan 20, 2024
1 parent 31682af commit d94c726
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions darc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion debug.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docker/debug.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
version_info = sys.version_info[:2]

# version string
__version__ = '1.0.0'
__version__ = '1.0.1'

# setup attributes
attrs = dict(
Expand Down Expand Up @@ -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):
Expand All @@ -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]

0 comments on commit d94c726

Please sign in to comment.