diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9de789ff..6bbf1242 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Change Log Unreleased ---------- +v2.0.2 +------ + +New testing and release framework. + v2.0.1 ------ diff --git a/docs/admin/version-releases.md b/docs/admin/version-releases.md index 16017f0b..32ccd34e 100644 --- a/docs/admin/version-releases.md +++ b/docs/admin/version-releases.md @@ -3,7 +3,7 @@ Version releases on Pypi and GitHub are handled automatically through GitHub actions. The steps to push a new release are: 1. Update the version in `sumo/__init__.py` -2. Update the changelog in `docs/src/changelog.md` with the new version and +2. Update the changelog in `CHANGELOG.rst` with the new version and release notes. 3. Create a tagged Git commit with the above changes. The tag is added using: ```bash diff --git a/sumo/__init__.py b/sumo/__init__.py index 9e619957..e6380ba0 100644 --- a/sumo/__init__.py +++ b/sumo/__init__.py @@ -6,4 +6,4 @@ Sumo is a set of scripts and an API for dealing with VASP output files. """ -__version__ = "2.0.1" +__version__ = "2.0.2"