diff --git a/Changelog b/Changelog
index f404ab27ffc7c940d44ef324eddf09bde78bce3e..4ef3886b794b887ad16d61420355071081be463a 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,4 @@
-Version 3.8dev2, 2022-12-07
+Version 3.8dev3, 2022-12-07
 
   Features:
   * Add enrollment of HOTP, TOTP, SMS, Email or PUSH token during
@@ -7,6 +7,7 @@ Version 3.8dev2, 2022-12-07
     management (#3299)
 
   Enhancements:
+  * Add thread ID to audit log (#3381)
   * Add preferred client mode to define the authentication behaviour of
     plugins (#3373)
   * Avoid spamming with SMS or Email by allowing to increase failcounter
diff --git a/doc/conf.py b/doc/conf.py
index 50e2b6c5f7cc80e683fdd225a09be9872424d636..ef2f5c826a4ce0b804bf6408ae2b4f21142e5c2c 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -23,7 +23,7 @@ import functools
 # built documents.
 #
 # The short X.Y version.
-version = '3.8dev2'
+version = '3.8dev3'
 # The full version, including alpha/beta/rc tags.
 #release = '2.16dev5'
 release = version
diff --git a/setup.py b/setup.py
index 298e1f0c56f0a4ee0f06c68f897f849ffedf188c..f7e3f5db68e661001c90c30c0ed5c98e434c8fc0 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ import stat
 import sys
 
 #VERSION = "2.1dev4"
-VERSION = "3.8dev2"
+VERSION = "3.8dev3"
 
 # Taken from kennethreitz/requests/setup.py
 package_directory = os.path.realpath(os.path.dirname(__file__))