From 755836117cd3c1ba81e5c340a9e89f25b032d01c Mon Sep 17 00:00:00 2001 From: John Hennig Date: Mon, 21 Feb 2022 18:54:13 +0100 Subject: [PATCH] Bumped version to 1.1.3. --- docs/releases.md | 6 ++++++ mph/meta.py | 2 +- tools/release.md | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/releases.md b/docs/releases.md index 3917f2d..45ece57 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -1,5 +1,11 @@ # Releases +## 1.1.3 +* [Published](https://pypi.org/project/MPh/1.1.3) on February 21, 2022. +* Adds support for export of animations. ([#43](https://github.com/MPh-py/MPh/issues/43)) +* Catches spurious exceptions when reading properties in +[`mph.inspect()`](https://mph.readthedocs.io/en/1.1/api/mph.inspect.html). ([#68](https://github.com/MPh-py/MPh/issues/68)) + ## 1.1.2 * [Published](https://pypi.org/project/MPh/1.1.2) on January 8, 2022. * Fixes evaluation error for datasets with slash in name. ([#66](https://github.com/MPh-py/MPh/issues/66)) diff --git a/mph/meta.py b/mph/meta.py index 35b68f7..393f977 100644 --- a/mph/meta.py +++ b/mph/meta.py @@ -2,7 +2,7 @@ title = 'MPh' synopsis = 'Pythonic scripting interface for Comsol Multiphysics' -version = '1.1.2' +version = '1.1.3' author = 'John Hennig' copyright = '2020–2022, John Hennig' license = 'MIT' diff --git a/tools/release.md b/tools/release.md index 8e286ee..bb2b560 100644 --- a/tools/release.md +++ b/tools/release.md @@ -2,6 +2,7 @@ * Bump version number in `mph/meta.py`. * Add release notes to `docs/releases.md`. * Add dedicated commit for the version bump. +* Run tests for all supported Python versions. * Push to GitHub: `git push origin main`. * Check documentation build on Read-the-Docs. * Tag commit with version number, e.g. `git tag v1.1.1`.