From 1152ff7beef49235bf42fa7a3fef472f687ac4a6 Mon Sep 17 00:00:00 2001 From: Daniel Hollas Date: Thu, 24 Nov 2022 17:59:18 +0000 Subject: [PATCH] Fix version mismatch (#121) In the last release, the version was not actually updated. It should be in the future since the bumper just added to bump the version. The version mismatch didn't break anything, because this package is not published anywhere, and is installed in aiidalab-docker-stack directly from the git repo based on the git version tag, which was correct. But if you try to identify the version in the current image, for example, the `mamba list` using the version tag from the file. --- home/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/__init__.py b/home/__init__.py index b808bed..43589db 100644 --- a/home/__init__.py +++ b/home/__init__.py @@ -1 +1 @@ -__version__ = "v22.01.0" +__version__ = "v22.08.0"