diff options
| -rw-r--r-- | .bumpversion.cfg | 2 | ||||
| -rw-r--r-- | CHANGES.rst | 14 | ||||
| -rw-r--r-- | changelog.d/1390.change.rst | 1 | ||||
| -rw-r--r-- | changelog.d/2481.change.rst | 2 | ||||
| -rw-r--r-- | changelog.d/2489.change.rst | 2 | ||||
| -rw-r--r-- | changelog.d/2529.change.rst | 1 | ||||
| -rw-r--r-- | setup.cfg | 2 |
7 files changed, 16 insertions, 8 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index facadd5f..0789cb98 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 51.2.0 +current_version = 51.3.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index e51b5e64..48669d99 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,17 @@ +v51.3.0 +------- + + +Changes +^^^^^^^ +* #1390: Newlines in metadata description/Summary now trigger a ValueError. +* #2481: Define ``create_module()`` and ``exec_module()`` methods in ``VendorImporter`` + to get rid of ``ImportWarning`` -- by :user:`hroncok` +* #2489: ``pkg_resources`` behavior for zipimport now matches the regular behavior, and finds + ``.egg-info`` (previoulsy would only find ``.dist-info``) -- by :user:`thatch` +* #2529: Fixed an issue where version tags may be added multiple times + + v51.2.0 ------- diff --git a/changelog.d/1390.change.rst b/changelog.d/1390.change.rst deleted file mode 100644 index fcb57f54..00000000 --- a/changelog.d/1390.change.rst +++ /dev/null @@ -1 +0,0 @@ -Newlines in metadata description/Summary now trigger a ValueError. diff --git a/changelog.d/2481.change.rst b/changelog.d/2481.change.rst deleted file mode 100644 index dc824c9c..00000000 --- a/changelog.d/2481.change.rst +++ /dev/null @@ -1,2 +0,0 @@ -Define ``create_module()`` and ``exec_module()`` methods in ``VendorImporter`` -to get rid of ``ImportWarning`` -- by :user:`hroncok` diff --git a/changelog.d/2489.change.rst b/changelog.d/2489.change.rst deleted file mode 100644 index 40eddbe7..00000000 --- a/changelog.d/2489.change.rst +++ /dev/null @@ -1,2 +0,0 @@ -``pkg_resources`` behavior for zipimport now matches the regular behavior, and finds -``.egg-info`` (previoulsy would only find ``.dist-info``) -- by :user:`thatch` diff --git a/changelog.d/2529.change.rst b/changelog.d/2529.change.rst deleted file mode 100644 index 10c41518..00000000 --- a/changelog.d/2529.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue where version tags may be added multiple times @@ -2,7 +2,7 @@ license_files = LICENSE name = setuptools -version = 51.2.0 +version = 51.3.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages |
