diff --git a/CHANGELOG.md b/CHANGELOG.md
index f484b3a417a5887e799773b961cc4bb57766451d..08ed1f5926f31a6618f7763dac5c9fa9968db159 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,17 @@
 <!-- ### Dependencies -->
 <!--  -->
 
+## mytoken 0.3.3
+
+### API
+
+- Don't redirect from `/.well-known/openid-configuration` to `/.well-known/mytoken-configuration`. Instead returning the
+  same content on both endpoints.
+
+### Enhancements
+
+- Removed buttons from webinterface in the tokeninfo tabs. The content now loads directly when switching the tab.
+
 ## mytoken 0.3.2
 
 - Fixed password prompt for migratedb
diff --git a/internal/model/version/version.go b/internal/model/version/version.go
index 8ee10554f1b6e40968ef86ee5156dfafd2bdd817..0901713a35be6526e61d0820f93722e713b58227 100644
--- a/internal/model/version/version.go
+++ b/internal/model/version/version.go
@@ -8,7 +8,7 @@ import (
 const (
 	MAJOR = 0
 	MINOR = 3
-	FIX   = 2
+	FIX   = 3
 	DEV   = false
 )