diff options
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 17 | ||||
| -rw-r--r-- | changelog.d/3685.change.rst | 1 | ||||
| -rw-r--r-- | changelog.d/3776.misc.rst | 2 | ||||
| -rw-r--r-- | changelog.d/3779.change.rst | 3 | ||||
| -rw-r--r-- | setup.cfg | 2 |
6 files changed, 19 insertions, 8 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a7f4e509..d997ebcd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 66.0.0 +current_version = 66.1.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index a5d7a4a0..7a9d8176 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,20 @@ +v66.1.0 +------- + + +Changes +^^^^^^^ +* #3685: Fix improper usage of deprecated/removed ``pkgutil`` APIs in Python 3.12+. +* #3779: Files referenced by ``file:`` in ``setup.cfg`` and by ``project.readme.file``, + ``project.license.file`` or ``tool.setuptools.dynamic.*.file`` in + ``pyproject.toml`` are now automatically included in the generated sdists. + +Misc +^^^^ +* #3776: Added note about using the ``--pep-517`` flag with ``pip`` to workaround + ``InvalidVersion`` errors for packages that are already installed in the system. + + v66.0.0 ------- diff --git a/changelog.d/3685.change.rst b/changelog.d/3685.change.rst deleted file mode 100644 index 839898d3..00000000 --- a/changelog.d/3685.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fix improper usage of deprecated/removed ``pkgutil`` APIs in Python 3.12+. diff --git a/changelog.d/3776.misc.rst b/changelog.d/3776.misc.rst deleted file mode 100644 index 3a9ba9d8..00000000 --- a/changelog.d/3776.misc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Added note about using the ``--pep-517`` flag with ``pip`` to workaround -``InvalidVersion`` errors for packages that are already installed in the system. diff --git a/changelog.d/3779.change.rst b/changelog.d/3779.change.rst deleted file mode 100644 index 55c0fbf1..00000000 --- a/changelog.d/3779.change.rst +++ /dev/null @@ -1,3 +0,0 @@ -Files referenced by ``file:`` in ``setup.cfg`` and by ``project.readme.file``, -``project.license.file`` or ``tool.setuptools.dynamic.*.file`` in -``pyproject.toml`` are now automatically included in the generated sdists. @@ -1,6 +1,6 @@ [metadata] name = setuptools -version = 66.0.0 +version = 66.1.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |
