diff --git a/Changelog.html b/Changelog.html
index af64430..b26078a 100644
--- a/Changelog.html
+++ b/Changelog.html
@@ -1,5 +1,31 @@
+
+
Version 1.2.3
+
+
New Features:
+
+ - Testing: Standard stream encoding (eg. sys.stdout) is utf-8 now (this change should only affect Windows, it's default on all other platforms since the beginning)
+ - Callbackproxies can now affect the global return value (if the callback has one)
+ - Exceptions (in plugin callbacks) are now printed to verbose log
+ - Added convenience function getConnectionVariable in ts3lib module
+ - SSL support is now statically linked (on Unix systems)
+
+
+
+
Bugfixes:
+
+ - Under specific circumstances a plugin with hotkeys could not be deactivated
+ - Some lists coming from the C SDK were not correctly converted to a pythonlist
+ - Emoticon settings from Iconpacks are now loaded with utf-8 encoding
+ - ts3lib.getChannelIDFromChannelNames works now as expected
+ - Iconpacks with duplicate entries are now loaded correctly
+ - There was a typo in getClientVariable
+ - Fixed some false documentation
+
+
+
+
Version 1.2.2
diff --git a/VERSION b/VERSION
index dfb6ba6..55995c1 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-1.2.2
+1.2.3
#YOU SHOULD NOT CHANGE THE CONTENT OF THIS FILE
diff --git a/ressources/python/pytson.py b/ressources/python/pytson.py
index e4a79c1..3eed890 100644
--- a/ressources/python/pytson.py
+++ b/ressources/python/pytson.py
@@ -9,7 +9,7 @@
from PythonQt.QtGui import QApplication
-_PYTSON_VERSION = "1.2.2"
+_PYTSON_VERSION = "1.2.3"
def tr(context, sourcetext, *, disambiguation="", n=-1):