diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2a861c5..4b5e8b8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.79 +current_version = 0.0.80 commit = True tag = True allow_dirty = False diff --git a/VERSION b/VERSION index 2786fad..ee92deb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.79 +0.0.80 diff --git a/docs/source/cli_outline.md b/docs/source/cli_outline.md index 2b06068..4da7316 100644 --- a/docs/source/cli_outline.md +++ b/docs/source/cli_outline.md @@ -3,7 +3,7 @@ Below is a complete outline of the `yojenkins` CLI command structure. !!! note -As of Version: **0.0.79** +As of Version: **0.0.80** ```text yojenkins diff --git a/setup.py b/setup.py index 82656b6..726bf05 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import setuptools # Package version number (Updated via bump2version tool) -__version__ = "0.0.79" +__version__ = "0.0.80" def check_py_version(): """Check the python version""" diff --git a/yojenkins/__init__.py b/yojenkins/__init__.py index 18bb251..08ac623 100644 --- a/yojenkins/__init__.py +++ b/yojenkins/__init__.py @@ -2,6 +2,6 @@ __title__ = 'yojenkins' __summary__ = "A CLI tool to interface with Jenkins server" -__version__ = "0.0.79" +__version__ = "0.0.80" __author__ = "Ismet Handzic" __copyright__ = "Copyright 2022 %s" % __author__