Version 1.92.9b
diff --git a/backends/imgui_impl_android.cpp b/backends/imgui_impl_android.cpp
index 08b3de0..21a7ae5 100644
--- a/backends/imgui_impl_android.cpp
+++ b/backends/imgui_impl_android.cpp
@@ -1,5 +1,5 @@
 // dear imgui: Platform Binding for Android native app
-// This needs to be used along with the OpenGL 3 Renderer (imgui_impl_opengl3)
+// This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan..)
 
 // Implemented features:
 //  [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy AKEYCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
diff --git a/backends/imgui_impl_android.h b/backends/imgui_impl_android.h
index f6e4103..8f22e9b 100644
--- a/backends/imgui_impl_android.h
+++ b/backends/imgui_impl_android.h
@@ -1,5 +1,5 @@
 // dear imgui: Platform Binding for Android native app
-// This needs to be used along with the OpenGL 3 Renderer (imgui_impl_opengl3)
+// This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan..)
 
 // Implemented features:
 //  [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy AKEYCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt
index 2265df9..fbfd2aa 100644
--- a/docs/CHANGELOG.txt
+++ b/docs/CHANGELOG.txt
@@ -36,12 +36,12 @@
 - Please report any issue!
 
 -----------------------------------------------------------------------
- VERSION 1.92.9b (In Progress)
+ VERSION 1.92.9b (Released 2026-07-31)
 -----------------------------------------------------------------------
 
-Breaking Changes:
+Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v1.92.9b
 
-Other Changes:
+Changes:
 
 - DragXXX, SliderXXX: fixed a regression in 1.92.9 where clicking a previously
   Ctrl+Clicked field would flick it to text edit mode for a frame. (#9476, #701)
@@ -53,7 +53,6 @@
   Prefer using `ImDrawData::CmdList.Size` anyway.
 
 
-
 -----------------------------------------------------------------------
  VERSION 1.92.9 (Released 2026-07-25)
 -----------------------------------------------------------------------
diff --git a/imgui.cpp b/imgui.cpp
index b480b50..7fa2d49 100644
--- a/imgui.cpp
+++ b/imgui.cpp
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (main code and documentation)
 
 // Help:
diff --git a/imgui.h b/imgui.h
index c7f5c92..611c5f2 100644
--- a/imgui.h
+++ b/imgui.h
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (headers)
 
 // Help:
@@ -29,8 +29,8 @@
 
 // Library Version
 // (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
-#define IMGUI_VERSION       "1.92.9"
-#define IMGUI_VERSION_NUM   19290
+#define IMGUI_VERSION       "1.92.9b"
+#define IMGUI_VERSION_NUM   19291
 #define IMGUI_HAS_TABLE             // Added BeginTable() - from IMGUI_VERSION_NUM >= 18000
 #define IMGUI_HAS_TEXTURES          // Added ImGuiBackendFlags_RendererHasTextures - from IMGUI_VERSION_NUM >= 19198
 
diff --git a/imgui_demo.cpp b/imgui_demo.cpp
index 85e1bc4..9f841b3 100644
--- a/imgui_demo.cpp
+++ b/imgui_demo.cpp
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (demo code)
 
 // Help:
diff --git a/imgui_draw.cpp b/imgui_draw.cpp
index 37ab7b4..e582f5c 100644
--- a/imgui_draw.cpp
+++ b/imgui_draw.cpp
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (drawing and font code)
 
 /*
diff --git a/imgui_internal.h b/imgui_internal.h
index c7efaf4..d2a8595 100644
--- a/imgui_internal.h
+++ b/imgui_internal.h
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (internal structures/api)
 
 // You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility.
diff --git a/imgui_tables.cpp b/imgui_tables.cpp
index 3e7065b..f8fab37 100644
--- a/imgui_tables.cpp
+++ b/imgui_tables.cpp
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (tables and columns code)
 
 /*
diff --git a/imgui_widgets.cpp b/imgui_widgets.cpp
index 3c46db5..5ed7d6f 100644
--- a/imgui_widgets.cpp
+++ b/imgui_widgets.cpp
@@ -1,4 +1,4 @@
-// dear imgui, v1.92.9
+// dear imgui, v1.92.9b
 // (widgets code)
 
 /*