diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 075cc092..73ddbbf1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,13 @@ changelog data prior to this present, but it is not to be considered complete. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +[v3.1.0] +-------- +**Added** +- Error handlers for the ACWF study, disabled by default to retain backwards compatibility. These + offer bare minimum, basically changing `ALGO` and `NBANDS` in case that is needed due to lack of + electronic convergence. This was already added in v2.2.0 and is now ported to v3. + [v3.0.1] -------- **Changed** diff --git a/aiida_vasp/__init__.py b/aiida_vasp/__init__.py index d6b0b440..64ea1a60 100644 --- a/aiida_vasp/__init__.py +++ b/aiida_vasp/__init__.py @@ -1,3 +1,3 @@ """AiiDA plugin for running and managing VASP calculations.""" -__version__ = '3.0.1' +__version__ = '3.1.0'