diff --git a/git_lint/__init__.py b/git_lint/__init__.py index 5c452e8..eb6a529 100644 --- a/git_lint/__init__.py +++ b/git_lint/__init__.py @@ -2,6 +2,6 @@ __author__ = 'Kenneth M. "Elf" Sternberg' __email__ = 'elf.sternberg@gmail.com' -__version__ = '0.0.6' +__version__ = '0.0.7' __all__ = ['git_lint'] diff --git a/git_lint/__main__.py b/git_lint/__main__.py index 115db66..cd37f2b 100644 --- a/git_lint/__main__.py +++ b/git_lint/__main__.py @@ -11,7 +11,7 @@ import gettext _ = gettext.gettext NAME = 'git-lint' -VERSION = '0.0.6' +VERSION = '0.0.7' def main(): diff --git a/setup.cfg b/setup.cfg index fe7793a..ecc0530 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.6 +current_version = 0.0.7 commit = True tag = True diff --git a/setup.py b/setup.py index f2e500c..ef61d8e 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ test_requirements = [ setup( name='git_linter', - version='0.0.6', + version='0.0.7', description="A git command to lint everything in your workspace (or stage) that was changed since the last commit.", long_description=readme + '\n\n' + history, author='Kenneth M. "Elf" Sternberg',