using versionchanged instead of versionadded for distutils doc on sdist default files
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst
index 8179031..d575b8b 100644
--- a/Doc/distutils/setupscript.rst
+++ b/Doc/distutils/setupscript.rst
@@ -450,10 +450,9 @@
          scripts=['scripts/xmlproc_parse', 'scripts/xmlproc_val']
          )
 
-All the scripts will also be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
-
-.. versionadded:: 2.7
+.. versionchanged:: 2.7
+  All the scripts will also be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
 .. _distutils-installing-package-data:
 
@@ -499,10 +498,10 @@
 
 .. versionadded:: 2.4
 
-All the files that match ``package_data`` will be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
+.. versionchanged:: 2.7
+  All the files that match ``package_data`` will be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
-.. versionadded:: 2.7
 
 .. _distutils-additional-files:
 
@@ -540,10 +539,10 @@
 files directly in the target directory, an empty string should be given as the
 directory.
 
-All the files that match ``data_files`` will be added to the ``MANIFEST``
-file if no template is provided. See :ref:`manifest`.
+.. versionchanged:: 2.7
+  All the files that match ``data_files`` will be added to the ``MANIFEST``
+  file if no template is provided. See :ref:`manifest`.
 
-.. versionadded:: 2.7
 
 
 .. _meta-data: