diff --git a/CHANGES.rst b/CHANGES.rst index 1d4f885..6012866 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,11 @@ This document records all notable changes to Boatswain. This project adheres to `Semantic Versioning `_. + +`1.0.1`_ +-------- +* Fixed some packaging things + `1.0.0`_ ------- diff --git a/setup.cfg b/setup.cfg index e89867c..6f5cf13 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 [bdist_wheel] universal = 1 @@ -7,10 +7,7 @@ universal = 1 [flake8] max-line-length = 120 ignore = - # H401: docstring should not start with a space - H401, - # H403: multi line docstrings should end on a new line - H403, - # H404: multi line docstring should start without a leading new line - H404, + H401, + H403, + H404, diff --git a/setup.py b/setup.py index 0916fea..259e4ea 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read(*names, **kwargs): setup( name='boatswain', - version='1.0.0', + version='1.0.1', url='https://github.com/nlesc-sherlock/boatswain', license='Apache Software License', author='Berend Weel',