diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 79323169..15d11966 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,22 @@ to update this file automatically for each release. .. towncrier release notes start +MDBenchmark 1.3.2 (2018-07-20) +============================== + +Bugfixes +-------- + +- We now print all rows when running `mdbenchmark analyze`. (#68) +- Suppress UserWarning caused by ``MDAnalysis==0.18``. (#71) + + +Misc +---- + +- Added new error message when running `mdbenchmark generate [...] --skip-validation` without providing a supported MD engine. (#74) + + MDBenchmark 1.3.1 (2018-05-17) ============================== diff --git a/changelog/68.bugfix b/changelog/68.bugfix deleted file mode 100644 index 9ad7928e..00000000 --- a/changelog/68.bugfix +++ /dev/null @@ -1 +0,0 @@ -We now print all rows when running `mdbenchmark analyze`. \ No newline at end of file diff --git a/changelog/71.bugfix b/changelog/71.bugfix deleted file mode 100644 index 4a8b5524..00000000 --- a/changelog/71.bugfix +++ /dev/null @@ -1 +0,0 @@ -Suppress UserWarning caused by ``MDAnalysis==0.18``. \ No newline at end of file diff --git a/changelog/74.misc b/changelog/74.misc deleted file mode 100644 index 66fb5b35..00000000 --- a/changelog/74.misc +++ /dev/null @@ -1 +0,0 @@ -Added new error message when running `mdbenchmark generate [...] --skip-validation` without providing a supported MD engine. diff --git a/mdbenchmark/__init__.py b/mdbenchmark/__init__.py index e0e48cdb..16d007a3 100644 --- a/mdbenchmark/__init__.py +++ b/mdbenchmark/__init__.py @@ -35,4 +35,4 @@ from . import analyze, generate, submit - __version__ = '1.3.1' + __version__ = '1.3.2'