From 74d217d6fe3a03fef3e7a8111c28db3cd2bd23fe Mon Sep 17 00:00:00 2001 From: "Kenneth M. Elf Sternberg" Date: Wed, 5 Oct 2016 10:52:58 -0700 Subject: [PATCH] First version commited to pypi. Fixed bug that prevented clean installation on OSX. Bumped version to 0.0.6, and tagged. --- MANIFEST.in | 2 +- git_lint/__init__.py | 2 +- git_lint/__main__.py | 2 +- setup.cfg | 3 ++- setup.py | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index bc6bd38..240c03f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,5 +8,5 @@ recursive-include tests * recursive-exclude * __pycache__ recursive-exclude * *.py[co] -recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif +recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif *.1 include docs/_build/man/git-lint.1 diff --git a/git_lint/__init__.py b/git_lint/__init__.py index edd1fcb..5c452e8 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.4' +__version__ = '0.0.6' __all__ = ['git_lint'] diff --git a/git_lint/__main__.py b/git_lint/__main__.py index 7e8ae40..115db66 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.4' +VERSION = '0.0.6' def main(): diff --git a/setup.cfg b/setup.cfg index 8599c8b..fe7793a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.4 +current_version = 0.0.6 commit = True tag = True @@ -16,3 +16,4 @@ universal = 1 [flake8] exclude = docs + diff --git a/setup.py b/setup.py index 690d079..f2e500c 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ test_requirements = [ setup( name='git_linter', - version='0.0.4', + version='0.0.6', 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',