Skip to content

Commit

Permalink
Bump version: 0.0.0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WaylonWalker committed Jul 23, 2021
1 parent aa4ead0 commit 8491d9f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 15 deletions.
2 changes: 1 addition & 1 deletion kedro_diff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Copyright (c) 2020, Waylon Walker.
License: MIT (see LICENSE for details)
"""
__version__ = "0.0.0"
__version__ = "0.1.0"
__author__ = ("Waylon Walker",)
__author_email__ = ("[email protected]",)
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion kedro_diff/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if TYPE_CHECKING:
from kedro.framework.startup import ProjectMetadata

__version__ = "0.0.0"
__version__ = "0.1.0"


@click.group(name="kedro-diff")
Expand Down
2 changes: 1 addition & 1 deletion kedro_diff/commit_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from kedro_diff.errors import KedroDiffError
from kedro_diff.logger import get_logger

__version__ = "0.0.0"
__version__ = "0.1.0"


def parse_commit(
Expand Down
27 changes: 16 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
[bumpversion]
current_version = 0.0.0
current_version = 0.1.0
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:kedro_diff/__init__.py]

[bumpversion:file:kedro_diff/cli.py]

[bumpversion:file:kedro_diff/commit_parser.py]

[pydocstyle]
inherit = false
match = (?!punch_).*\.py

[tool:pytest]
addopts = -ra -q --cov=kedro_diff --cov-fail-under=100 --cov-report=term-missing
testpaths =
tests
testpaths =
tests

[coverage:report]
omit =
kedro_diff/cli.py
kedro_diff/get_pipelines.py
kedro_diff/sample_data.py
kedro_diff/logger.py
exclude_lines =
if __name__ == .__main__.:
if TYPE_CHECKING:
omit =
kedro_diff/cli.py
kedro_diff/get_pipelines.py
kedro_diff/sample_data.py
kedro_diff/logger.py
exclude_lines =
if __name__ == .__main__.:
if TYPE_CHECKING:

[mypy]
python_version = 3.8
warn_return_any = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name=NAME,
version="0.0.0",
version="0.1.0",
url="https://github.com/WaylonWalker/kedro-diff",
packages=find_packages(),
platforms="any",
Expand Down

0 comments on commit 8491d9f

Please sign in to comment.