diff --git a/doc/users/prev_whats_new/whats_new_3.10.0.rst b/doc/users/prev_whats_new/whats_new_3.10.0.rst
index bc160787aebc..2a6e55f7c3cb 100644
--- a/doc/users/prev_whats_new/whats_new_3.10.0.rst
+++ b/doc/users/prev_whats_new/whats_new_3.10.0.rst
@@ -1,3 +1,20 @@
+=============================================
+What's new in Matplotlib 3.10.0 (Dec 14, 2024)
+=============================================
+
+For a list of all of the issues and pull requests since the last revision, see the
+:ref:`github-stats`.
+
+.. contents:: Table of Contents
+ :depth: 4
+
+.. toctree::
+ :maxdepth: 4
+
+Accessible Colors
+=================
+
+
New more-accessible color cycle
-------------------------------
@@ -43,6 +60,12 @@ colour maps version 8.0.1 (DOI: https://doi.org/10.5281/zenodo.1243862).
ax[1].imshow(img, cmap=plt.cm.managua)
ax[2].imshow(img, cmap=plt.cm.vanimo)
+
+
+Plotting and Annotation improvements
+====================================
+
+
Specifying a single color in ``contour`` and ``contourf``
---------------------------------------------------------
@@ -65,66 +88,6 @@ may be passed.
plt.show()
-Exception handling control
---------------------------
-
-The exception raised when an invalid keyword parameter is passed now includes
-that parameter name as the exception's ``name`` property. This provides more
-control for exception handling:
-
-
-.. code-block:: python
-
- import matplotlib.pyplot as plt
-
- def wobbly_plot(args, **kwargs):
- w = kwargs.pop('wobble_factor', None)
-
- try:
- plt.plot(args, **kwargs)
- except AttributeError as e:
- raise AttributeError(f'wobbly_plot does not take parameter {e.name}') from e
-
-
- wobbly_plot([0, 1], wibble_factor=5)
-
-.. code-block::
-
- AttributeError: wobbly_plot does not take parameter wibble_factor
-
-Preliminary support for free-threaded CPython 3.13
---------------------------------------------------
-
-Matplotlib 3.10 has preliminary support for the free-threaded build of CPython 3.13. See
-https://py-free-threading.github.io, `PEP 703 `_ and
-the `CPython 3.13 release notes
-`_ for more detail
-about free-threaded Python.
-
-Support for free-threaded Python does not mean that Matplotlib is wholly thread safe. We
-expect that use of a Figure within a single thread will work, and though input data is
-usually copied, modification of data objects used for a plot from another thread may
-cause inconsistencies in cases where it is not. Use of any global state (such as the
-``pyplot`` module) is highly discouraged and unlikely to work consistently. Also note
-that most GUI toolkits expect to run on the main thread, so interactive usage may be
-limited or unsupported from other threads.
-
-If you are interested in free-threaded Python, for example because you have a
-multiprocessing-based workflow that you are interested in running with Python threads, we
-encourage testing and experimentation. If you run into problems that you suspect are
-because of Matplotlib, please open an issue, checking first if the bug also occurs in the
-“regular” non-free-threaded CPython 3.13 build.
-
-Increased Figure limits with Agg renderer
------------------------------------------
-
-Figures using the Agg renderer are now limited to 2**23 pixels in each
-direction, instead of 2**16. Additionally, bugs that caused artists to not
-render past 2**15 pixels horizontally have been fixed.
-
-Note that if you are using a GUI backend, it may have its own smaller limits
-(which may themselves depend on screen size.)
-
Vectorized ``hist`` style parameters
------------------------------------
@@ -259,39 +222,6 @@ Subfigures are now added in row-major order
ax.set_yticks([])
plt.show()
-``svg.id`` rcParam
-------------------
-
-:rc:`svg.id` lets you insert an ``id`` attribute into the top-level ``