From 8413dee6e609e9ec7303fc67aef3631efce74f98 Mon Sep 17 00:00:00 2001 From: ksebaz <58634313+ksebaz@users.noreply.github.com> Date: Mon, 20 Feb 2023 11:03:46 +0100 Subject: [PATCH] Prepare version 3.0.2. --- CHANGELOG.rst | 19 +++++++++++++++++++ changelog/181.feature | 1 - changelog/182.feature | 1 - changelog/184.bugfix | 1 - changelog/192.bugfix | 1 - changelog/193.feature | 1 - changelog/195.bugfix | 1 - docs/conf.py | 2 +- mdbenchmark/__version__.py | 2 +- pyproject.toml | 2 +- 10 files changed, 22 insertions(+), 9 deletions(-) delete mode 100644 changelog/181.feature delete mode 100644 changelog/182.feature delete mode 100644 changelog/184.bugfix delete mode 100644 changelog/192.bugfix delete mode 100644 changelog/193.feature delete mode 100644 changelog/195.bugfix diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 459c448f..fda7e875 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,22 @@ +3.0.2 (2023-02-20) +================== + +Features +-------- + +- Moved from travis to github-actions (PR 181) (`#181 `_) +- Add test to CI to verify distribution with pip. (PR 182) (`#182 `_) +- Make scaling projection show optimal scaling. (PR 193) (`#193 `_) + + +Bugfixes +-------- + +- Pin markupsafe to 2.0.1 to fix incompatibility with jinja2 ^2.10. (PR 184) (`#184 `_) +- Fix bug when plotting cpu-/gpu-data only with 'version3-categories'. (PR 192) (`#192 `_) +- Don't use deprecated kwarg 'type' in matplotlib.pyplot.savefig. (PR 195) (`#195 `_) + + 3.0.1 (2020-10-09) ================== diff --git a/changelog/181.feature b/changelog/181.feature deleted file mode 100644 index b0c81fe9..00000000 --- a/changelog/181.feature +++ /dev/null @@ -1 +0,0 @@ -Moved from travis to github-actions (PR 181) diff --git a/changelog/182.feature b/changelog/182.feature deleted file mode 100644 index 790be8b7..00000000 --- a/changelog/182.feature +++ /dev/null @@ -1 +0,0 @@ -Add test to CI to verify distribution with pip. (PR 182) diff --git a/changelog/184.bugfix b/changelog/184.bugfix deleted file mode 100644 index fa1505f6..00000000 --- a/changelog/184.bugfix +++ /dev/null @@ -1 +0,0 @@ -Pin markupsafe to 2.0.1 to fix incompatibility with jinja2 ^2.10. (PR 184) diff --git a/changelog/192.bugfix b/changelog/192.bugfix deleted file mode 100644 index aeac5a0f..00000000 --- a/changelog/192.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix bug when plotting cpu-/gpu-data only with 'version3-categories'. (PR 192) diff --git a/changelog/193.feature b/changelog/193.feature deleted file mode 100644 index 82e6b890..00000000 --- a/changelog/193.feature +++ /dev/null @@ -1 +0,0 @@ -Make scaling projection show optimal scaling. (PR 193) diff --git a/changelog/195.bugfix b/changelog/195.bugfix deleted file mode 100644 index d3f2e548..00000000 --- a/changelog/195.bugfix +++ /dev/null @@ -1 +0,0 @@ -Don't use deprecated kwarg 'type' in matplotlib.pyplot.savefig. (PR 195) diff --git a/docs/conf.py b/docs/conf.py index 4c11e71d..cf636c72 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = "3.0" # The full version, including alpha/beta/rc tags. -release = "3.0.1" +release = "3.0.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mdbenchmark/__version__.py b/mdbenchmark/__version__.py index 9f97d832..f531c25d 100644 --- a/mdbenchmark/__version__.py +++ b/mdbenchmark/__version__.py @@ -17,4 +17,4 @@ # # You should have received a copy of the GNU General Public License # along with MDBenchmark. If not, see -VERSION = "3.0.1" +VERSION = "3.0.2" diff --git a/pyproject.toml b/pyproject.toml index 84a83db0..33288386 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mdbenchmark" -version = "3.0.1" +version = "3.0.2" license = "GPL-3.0" authors = ["Max Linke", "Michael Gecht", "Marc Siggel", "Sebastian Kehl"] description = "Quickly generate, start and analyze benchmarks for your molecular dynamics simulations."