Skip to content

Commit c1f7ce4

Browse files
committed
bump version to 1.0.0
1 parent 4b8901c commit c1f7ce4

File tree

10 files changed

+15
-13
lines changed

10 files changed

+15
-13
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="0.9.5" \
7+
org.opencontainers.image.version="1.0.0" \
88
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
99

1010
STOPSIGNAL SIGINT

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- [x] prepare to bump version *1.x*
44
- [x] revise documentations
5-
- [ ] revise command line arguments (perhaps supporting both CLI & envvar like `bpc-utils`)
5+
- [ ] ~revise command line arguments (perhaps supporting both CLI & envvar like `bpc-utils`)~
66
- [ ] ~add some tests~
77

88
# November 3, 2020

darc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
from darc.sites import register as register_sites # pylint: disable=unused-import
4242

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

darc/__main__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,15 @@
2828

2929
if TYPE_CHECKING:
3030
from argparse import ArgumentParser
31-
from queue import Queue
32-
from subprocess import Popen # nosec: B404
33-
from typing import List, Optional, Union
31+
from typing import Any, List, Optional
3432

3533
# wait for Redis connection?
3634
_WAIT_REDIS = bool(int(os.getenv('DARC_REDIS', '1')))
3735

3836

3937
def _exit() -> None:
4038
"""Gracefully exit."""
41-
def caller(target: 'Optional[Union[Queue, Popen]]', function: str) -> None:
39+
def caller(target: 'Optional[Any]', function: str) -> None:
4240
"""Wrapper caller."""
4341
if target is None:
4442
return

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="0.9.5" \
18+
org.opencontainers.image.version="1.0.0" \
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="0.9.5" \
7+
org.opencontainers.image.version="1.0.0" \
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="0.9.5" \
18+
org.opencontainers.image.version="1.0.0" \
1919
org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
2020
#EXPOSE 9050
2121

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
# -- Project information -----------------------------------------------------
3434

3535
project = 'darc'
36-
copyright = '2019-2020, Jarry Shaw' # pylint: disable=redefined-builtin
36+
copyright = '2019-2021, Jarry Shaw' # pylint: disable=redefined-builtin
3737
author = 'Jarry Shaw'
3838

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

4242

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

docs/source/darc/logging.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.. automodule:: darc.logging
2+
:members:
3+
:undoc-members:
4+
:show-inheritance:

setup.py

Lines changed: 1 addition & 1 deletion
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__ = '0.9.5'
29+
__version__ = '1.0.0'
3030

3131
# setup attributes
3232
attrs = dict(

0 commit comments

Comments
 (0)