diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ddd9c8f3293caeb186cd8f6c7d0e32eeee4f59f..9d211b7e2ad48363cc414f2bd02263bc30c209e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,23 +5,13 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [Unreleased] ##
-
-### Added ###
-
-### Changed ###
-
-### Deprecated ###
-
-### Removed ###
+## [0.6.1] - 2021-12-03 ##
 
 ### Fixed ###
 
 - #50 keyring can be used as password input method again
 * #81 compare_entities from apiutils does not compare entity values
 
-### Security ###
-
 ## [0.6.0] - 2021-10-19 ##
 
 ### Added ###
diff --git a/setup.py b/setup.py
index bb01da7f92d3135b98c5c366f20fb0612fac792a..0eda58e813bb88e3d63b8ad064db362069328dd1 100755
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@ MAJOR = 0
 MINOR = 6
 MICRO = 1
 PRE = ""  # e.g. rc0, alpha.1, 0.beta-23
-ISRELEASED = False
+ISRELEASED = True
 
 if PRE:
     VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE)