diff --git a/NEWS.rst b/NEWS.rst
index f8c011539ff1636f293f9b789bb51eda1f0040fc..561007d78bf0ef5b90281b52a5abf56af8bfe4d6 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,20 @@
 kgb Releases
 ============
 
+kgb 7.3 (9-December-2025)
+=========================
+
+* Added support for Python 3.14.
+
+* Added ``SpyAgency.get_spy``, a utility method which returns the
+  ``FunctionSpy`` for a given function or method. This is particularly useful
+  when using type checkers, which are unaware that the function itself has been
+  replaced.
+
+* Fixed a ``DeprecationWarning`` which would appear when spying on generator
+  functions.
+
+
 kgb 7.2 (3-November-2024)
 =========================
 
diff --git a/kgb/__init__.py b/kgb/__init__.py
index 316bff6f9ab403e06fc5df95c1df876c83c3adef..47e1e2e231059c357b588230bd4589c1797125be 100644
--- a/kgb/__init__.py
+++ b/kgb/__init__.py
@@ -16,7 +16,7 @@
 #
 #   (Major, Minor, Micro, alpha/beta/rc/final, Release Number, Released)
 #
-VERSION = (7, 2, 1, 'alpha', 0, False)
+VERSION = (7, 3, 0, 'final', 0, True)
 
 
 def get_version_string():
