Skip to content

Commit d0673ab

Browse files
committed
1.0.0
1 parent 1467f64 commit d0673ab

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: pip
4+
directory: /
5+
schedule:
6+
interval: daily
7+
- package-ecosystem: github-actions
8+
directory: /
9+
schedule:
10+
interval: daily
11+
- package-ecosystem: docker
12+
directory: /
13+
schedule:
14+
interval: daily

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ ENV VERSION ${VERSION:-master}
55

66
RUN pip install --upgrade pip
77

8-
RUN python -m pip install git+https://github.com/eggplants/shindan_cli@${VERSION}
8+
RUN python -m pip install git+https://github.com/eggplants/shindan-cli@${VERSION}
99

1010
ENTRYPOINT ["shindan"]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ packages = [{include = "shindan_cli"}]
4747
license = "MIT"
4848
readme = "README.md"
4949
repository = "https://github.com/eggplants/shindan-cli"
50-
version = "0.9.0"
50+
version = "1.0.0"
5151

5252
[tool.poetry.dependencies]
5353
python = ">=3.7,<4"
@@ -65,7 +65,7 @@ types-requests = "^2.28.11.14"
6565
lxml-stubs = "^0.4.0"
6666

6767
[tool.poetry.scripts]
68-
mbpp = "shindan_cli.main:main"
68+
shindan = "shindan_cli.main:main"
6969

7070
[tool.poetry_bumpversion.file."shindan_cli/__init__.py"]
7171

shindan_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
from .shindan import ShindanResult, shindan
55

6-
__version__ = "0.9.0"
6+
__version__ = "1.0.0"
77
__all__ = ("shindan", "ShindanResult")

0 commit comments

Comments
 (0)