From a72a5bb66391a081c5b927ed9e6beb885792940c Mon Sep 17 00:00:00 2001 From: Martin Schlipf Date: Fri, 17 Feb 2023 16:51:58 +0100 Subject: [PATCH] Release version 0.7.1 (#79) --- docs/conf.py | 2 +- pyproject.toml | 2 +- src/py4vasp/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 28b4290f..b1498e4f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "VASP Software GmbH" # The full version, including alpha/beta/rc tags -release = "0.7.0" +release = "0.7.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 7477fcc3..faa6bc1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "py4vasp" -version = "0.7.0" +version = "0.7.1" description = "Tool for assisting with the analysis and setup of VASP calculations." authors = [ "VASP Software GmbH ", diff --git a/src/py4vasp/__init__.py b/src/py4vasp/__init__.py index c496123b..2e193f9f 100644 --- a/src/py4vasp/__init__.py +++ b/src/py4vasp/__init__.py @@ -4,5 +4,5 @@ from py4vasp._third_party.graph import plot from py4vasp._third_party.interactive import set_error_handling -__version__ = "0.7.0" +__version__ = "0.7.1" set_error_handling("Minimal")