diff --git a/CHANGELOG.md b/CHANGELOG.md
index 51ea93d60cf74636d38709b0b9b11763f2bc739f..3021cbc6c0ba1287ac7b8d71dd9abd1a18fd73b3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,8 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ## [Unreleased] ##
 
 ### Added ###
-- function in administration that generates passwords that comply with the
-  rules
 
 ### Changed ###
 
@@ -19,6 +17,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 ### Fixed ###
 
+### Security ###
+
+## [0.7.0] - 2022-01-21 ##
+
+### Added ###
+
+- Function in administration that generates passwords that comply with the rules.
+
+### Fixed ###
+
 - #90 compare_entities function in apiutils does not check units
 
 ### Security ###
diff --git a/setup.py b/setup.py
index b2a89cfe8dc26de874585cdd46c06e458d3533e9..083865555352a4fd06fb12b9da6f787d51510a4a 100755
--- a/setup.py
+++ b/setup.py
@@ -45,11 +45,11 @@ from setuptools import find_packages, setup
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ########################################################################
 
+ISRELEASED = False
 MAJOR = 0
-MINOR = 6
-MICRO = 2
+MINOR = 7
+MICRO = 1
 PRE = ""  # e.g. rc0, alpha.1, 0.beta-23
-ISRELEASED = False
 
 if PRE:
     VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)