diff --git a/Changelog.html b/Changelog.html
index 9040c82..af64430 100644
--- a/Changelog.html
+++ b/Changelog.html
@@ -1,5 +1,27 @@
+
+
Version 1.2.2
+
+
New Features:
+
+ - pytsonui.setupUi can now take a new keyword argument extraWidgets with python implemented widgets to be used in ui files
+ - ts3widgets.Serverview is now constructable by setupUi (schid parameter is now a keyword argument)
+ - added some convenience functions to query variables (getChannelVariable, getClientVariable, getClientSelfVariable, getServerVariable) which will choose (in most cases) the right ctype function
+ - plugincommands have now sender integrity builtin pyTSon (see _plugincmd.py for limitations and additional documentation)
+
+
+
+
Bugfixes:
+
+ - ts3widgets.ServerviewModel will now react to kicked clients accordingly
+ - Fixed a possible crash in initHotkeys
+ - Adopted the variable handling of the plugin sdk's function requestClientSetWhisperList
+ - Fixed a crash if some initial imports on pyTSon's initiation failed
+
+
+
+
Version 1.2.1
diff --git a/VERSION b/VERSION
index 91f31dd..dfb6ba6 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-1.2.1
+1.2.2
#YOU SHOULD NOT CHANGE THE CONTENT OF THIS FILE
diff --git a/ressources/python/pytson.py b/ressources/python/pytson.py
index 4ebf4b6..f3dd4dd 100644
--- a/ressources/python/pytson.py
+++ b/ressources/python/pytson.py
@@ -9,7 +9,7 @@
from PythonQt.QtGui import QApplication
-_PYTSON_VERSION = "1.2.1"
+_PYTSON_VERSION = "1.2.2"
def tr(context, sourcetext, *, disambiguation="", n=-1):