From 2e98eeb51a13fb53738e7477c93b5d584061cac8 Mon Sep 17 00:00:00 2001
From: Wolfgang Bangerth <bangerth@colostate.edu>
Date: Mon, 13 May 2024 15:38:08 -0600
Subject: [PATCH] Add a changelog entry.

---
 .../changes/incompatibilities/20240513Bangerth-2   | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 doc/news/changes/incompatibilities/20240513Bangerth-2

diff --git a/doc/news/changes/incompatibilities/20240513Bangerth-2 b/doc/news/changes/incompatibilities/20240513Bangerth-2
new file mode 100644
index 0000000000..47b50d10dc
--- /dev/null
+++ b/doc/news/changes/incompatibilities/20240513Bangerth-2
@@ -0,0 +1,14 @@
+Changed: The Quadrature class used to have a constructor that took an
+integer argument. This was error-prone because it was easy to accidentally
+write
+@code
+  Quadrature<dim> quadrature(3);
+@endcode
+where
+@code
+  QGauss<dim> quadrature(3);
+@endcode
+was meant. As a consequence, this constructor has been removed from the `public`
+interface of the class.
+<br>
+(Wolfgang Bangerth, 2024/05/13)
-- 
2.39.5