From fa14483daaf6f0479d109d1b3cab3f1e1bef6894 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 25 Feb 2021 08:58:43 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2053.0.0=20=E2=86=92=2053.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGES.rst | 11 +++++++++++ changelog.d/1937.change.rst | 1 - changelog.d/2573.change.rst | 2 -- setup.cfg | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 changelog.d/1937.change.rst delete mode 100644 changelog.d/2573.change.rst diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d11952599e..a408627e47 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 53.0.0 +current_version = 53.1.0 commit = True tag = True diff --git a/CHANGES.rst b/CHANGES.rst index 93eae6870c..7e8c28bf0b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,14 @@ +v53.1.0 +------- + + +Changes +^^^^^^^ +* #1937: Preserved case-sensitivity of keys in setup.cfg so that entry point names are case-sensitive. Changed sensitivity of configparser. NOTE: Any projects relying on case-insensitivity will need to adapt to accept the original case as published. -- by :user:`melissa-kun-li` +* #2573: Fixed error in uploading a Sphinx doc with the :code:`upload_docs` command. An html builder will be used. + Note: :code:`upload_docs` is deprecated for PyPi, but is supported for other sites -- by :user:`melissa-kun-li` + + v53.0.0 ------- diff --git a/changelog.d/1937.change.rst b/changelog.d/1937.change.rst deleted file mode 100644 index acd4305968..0000000000 --- a/changelog.d/1937.change.rst +++ /dev/null @@ -1 +0,0 @@ -Preserved case-sensitivity of keys in setup.cfg so that entry point names are case-sensitive. Changed sensitivity of configparser. NOTE: Any projects relying on case-insensitivity will need to adapt to accept the original case as published. -- by :user:`melissa-kun-li` \ No newline at end of file diff --git a/changelog.d/2573.change.rst b/changelog.d/2573.change.rst deleted file mode 100644 index b06bd8c954..0000000000 --- a/changelog.d/2573.change.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed error in uploading a Sphinx doc with the :code:`upload_docs` command. An html builder will be used. -Note: :code:`upload_docs` is deprecated for PyPi, but is supported for other sites -- by :user:`melissa-kun-li` \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 3c85d99882..12ce13861d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ license_files = LICENSE name = setuptools -version = 53.0.0 +version = 53.1.0 author = Python Packaging Authority author_email = distutils-sig@python.org description = Easily download, build, install, upgrade, and uninstall Python packages