diff --git a/ReleaseNotes.rst b/ReleaseNotes.rst index 4893ecb..b29e34b 100644 --- a/ReleaseNotes.rst +++ b/ReleaseNotes.rst @@ -2,8 +2,8 @@ Release Notes ============= -Next Release -============ +1.5.1 +===== - Improvements to documentation (scottclowe). - Improved code linting by reworking private variables in Rule class to now be properties and updated diff --git a/pykwalify/__init__.py b/pykwalify/__init__.py index 909ee42..9bcc766 100644 --- a/pykwalify/__init__.py +++ b/pykwalify/__init__.py @@ -8,7 +8,7 @@ import os __author__ = 'Grokzen ' -__version_info__ = (1, 5, 0) +__version_info__ = (1, 5, 1) __version__ = '.'.join(map(str, __version_info__)) diff --git a/setup.py b/setup.py index bc4651e..37e3644 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pykwalify", - version="1.5.0", + version="1.5.1", description='Python lib/cli for JSON/YAML schema validation', long_description=readme + '\n\n' + history, author="Johan Andersson",