diff --git a/CHANGELOG b/CHANGELOG index bb4aace5..9dc52dda 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -5.0.0 (WIP): +5.0.0: New feature: - Complete rewrite of the UI using (currently) modern frameworks and libraries. It is now built with ViteJS, VueJS, Vuetify and d3. (Marion diff --git a/powa/__init__.py b/powa/__init__.py index 07fb40ab..8489b28f 100644 --- a/powa/__init__.py +++ b/powa/__init__.py @@ -7,7 +7,7 @@ import os import re -__VERSION__ = "5.0.0dev" +__VERSION__ = "5.0.0" ver_tmp = re.sub("(alpha|beta|dev)[0-9]*", "", __VERSION__) __VERSION_NUM__ = [int(part) for part in (ver_tmp.split("."))]