Fix determination of Metadata version in packaging (#8933).

Original patch by Filip Gruszczyński.
diff --git a/Misc/NEWS b/Misc/NEWS
index 67b8cf8..3d35823 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -274,9 +274,9 @@
 Library
 -------
 
-- Issue #8933: distutils' PKG-INFO files will now correctly report
-  Metadata-Version: 1.1 instead of 1.0 if a Classifier or Download-URL field is
-  present.
+- Issue #8933: distutils' PKG-INFO files and packaging's METADATA files will
+  now correctly report Metadata-Version: 1.1 instead of 1.0 if a Classifier or
+  Download-URL field is present.
 
 - Issue #12567: Add curses.unget_wch() function. Push a character so the next
   get_wch() will return it.