diff --git a/ReleaseNotes.rst b/ReleaseNotes.rst index 7202f36..caafc35 100644 --- a/ReleaseNotes.rst +++ b/ReleaseNotes.rst @@ -2,6 +2,12 @@ Release Notes ============= +1.4.1 +===== + +- Added tests to sdist to enable downstream packaging to run tests. No code changes in this release. + + 1.4.0 ===== diff --git a/pykwalify/__init__.py b/pykwalify/__init__.py index 1afc9d1..5f18823 100644 --- a/pykwalify/__init__.py +++ b/pykwalify/__init__.py @@ -8,7 +8,7 @@ import os __author__ = 'Grokzen ' -__version_info__ = (1, 4, 0) +__version_info__ = (1, 4, 1) __version__ = '.'.join(map(str, __version_info__)) diff --git a/setup.py b/setup.py index 6700a76..a3f55ee 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pykwalify", - version="1.4.0", + version="1.4.1", description='Python lib/cli for JSON/YAML schema validation', long_description=readme + '\n\n' + history, author="Johan Andersson",