diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-13 11:00:18 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-13 11:00:18 +0100 |
commit | 78cb747d66bda1a6f6649e82690aaf5083a89d69 (patch) | |
tree | 3237e8bf012c63b26c10dbeaf13184b8dda839a6 | |
parent | ddf7b953d1605374e6aa62ed4eb3760b3c5bcba0 (diff) | |
download | python-setuptools-git-78cb747d66bda1a6f6649e82690aaf5083a89d69.tar.gz |
Bump version: 62.3.4 → 62.4.0v62.4.0
-rw-r--r-- | .bumpversion.cfg | 2 | ||||
-rw-r--r-- | CHANGES.rst | 33 | ||||
-rw-r--r-- | changelog.d/3256.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/3355.doc.rst | 1 | ||||
-rw-r--r-- | changelog.d/3361.doc.rst | 1 | ||||
-rw-r--r-- | changelog.d/3363.doc.rst | 3 | ||||
-rw-r--r-- | changelog.d/3364.doc.rst | 2 | ||||
-rw-r--r-- | changelog.d/3366.change.rst | 1 | ||||
-rw-r--r-- | changelog.d/3367.doc.rst | 13 | ||||
-rw-r--r-- | setup.cfg | 2 |
10 files changed, 35 insertions, 24 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fb327835..43f85948 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 62.3.4 +current_version = 62.4.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index cd9fc297..61e79659 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,36 @@ +v62.4.0 +------- + + +Changes +^^^^^^^ +* #3256: Added setuptools.command.build command to match distutils.command.build -- by :user:`isuruf` +* #3366: Merge with pypa/distutils@75ed79d including reformat using black, fix for Cygwin support (pypa/distutils#139), and improved support for cross compiling (pypa/distutils#144 and pypa/distutils#145). + +Documentation changes +^^^^^^^^^^^^^^^^^^^^^ +* #3355: Changes to the User Guide's Entry Points page -- by :user:`codeandfire` +* #3361: Further minor corrections to the Entry Points page -- by :user:`codeandfire` +* #3363: Rework some documentation pages to de-emphasize ``distutils`` and the history + of packaging in the Python ecosystem. The focus of these changes is to make the + documentation easier to read for new users. +* #3364: Update documentation about dependency management, removing mention to + the deprecated ``dependency_links`` and adding some small improvements. +* #3367: Extracted text about automatic resource extraction and the zip-safe flag + from ``userguide/miscellaneous`` to ``deprecated/resource_extraction`` and + ``deprecated/zip_safe``. + + Extracted text about additional metadata files from + ``userguide/miscellaneous`` into the existing ``userguide/extension`` + document. + + Updated ``userguide/extension`` to better reflect the status of the + setuptools project. + + Removed ``userguide/functionalities_rewrite`` (a virtually empty part of the + docs). + + v62.3.4 ------- diff --git a/changelog.d/3256.change.rst b/changelog.d/3256.change.rst deleted file mode 100644 index 46ead2d2..00000000 --- a/changelog.d/3256.change.rst +++ /dev/null @@ -1 +0,0 @@ -Added setuptools.command.build command to match distutils.command.build -- by :user:`isuruf` diff --git a/changelog.d/3355.doc.rst b/changelog.d/3355.doc.rst deleted file mode 100644 index 683d1111..00000000 --- a/changelog.d/3355.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Changes to the User Guide's Entry Points page -- by :user:`codeandfire` diff --git a/changelog.d/3361.doc.rst b/changelog.d/3361.doc.rst deleted file mode 100644 index 99622081..00000000 --- a/changelog.d/3361.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Further minor corrections to the Entry Points page -- by :user:`codeandfire` diff --git a/changelog.d/3363.doc.rst b/changelog.d/3363.doc.rst deleted file mode 100644 index d25e41c2..00000000 --- a/changelog.d/3363.doc.rst +++ /dev/null @@ -1,3 +0,0 @@ -Rework some documentation pages to de-emphasize ``distutils`` and the history -of packaging in the Python ecosystem. The focus of these changes is to make the -documentation easier to read for new users. diff --git a/changelog.d/3364.doc.rst b/changelog.d/3364.doc.rst deleted file mode 100644 index 16fbd365..00000000 --- a/changelog.d/3364.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Update documentation about dependency management, removing mention to -the deprecated ``dependency_links`` and adding some small improvements. diff --git a/changelog.d/3366.change.rst b/changelog.d/3366.change.rst deleted file mode 100644 index 4ca65ee7..00000000 --- a/changelog.d/3366.change.rst +++ /dev/null @@ -1 +0,0 @@ -Merge with pypa/distutils@75ed79d including reformat using black, fix for Cygwin support (pypa/distutils#139), and improved support for cross compiling (pypa/distutils#144 and pypa/distutils#145). diff --git a/changelog.d/3367.doc.rst b/changelog.d/3367.doc.rst deleted file mode 100644 index 2461f918..00000000 --- a/changelog.d/3367.doc.rst +++ /dev/null @@ -1,13 +0,0 @@ -Extracted text about automatic resource extraction and the zip-safe flag -from ``userguide/miscellaneous`` to ``deprecated/resource_extraction`` and -``deprecated/zip_safe``. - -Extracted text about additional metadata files from -``userguide/miscellaneous`` into the existing ``userguide/extension`` -document. - -Updated ``userguide/extension`` to better reflect the status of the -setuptools project. - -Removed ``userguide/functionalities_rewrite`` (a virtually empty part of the -docs). @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 62.3.4 +version = 62.4.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |