summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-03-05 11:07:23 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-03-05 11:07:23 -0500
commitb40d7f4174083c92ad532eccf9b13c2d8570accf (patch)
treecef1f3c7f46a307e0e3ea3c3f2383fb1dfd69a5e
parent729c45d50afe7275ade53dd819d0e45547e98f01 (diff)
downloadpython-setuptools-git-54.1.0.tar.gz
Bump version: 54.0.0 → 54.1.0v54.1.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst9
-rw-r--r--changelog.d/1608.change.rst1
-rw-r--r--setup.cfg2
4 files changed, 11 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 25490e49..9a230643 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 54.0.0
+current_version = 54.1.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 62f911aa..3920b27e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,12 @@
+v54.1.0
+-------
+
+
+Changes
+^^^^^^^
+* #1608: Removed the conversion of dashes to underscores in the :code:`extras_require` and :code:`data_files` of :code:`setup.cfg` to support the usage of dashes. Method will warn users when they use a dash-separated key which in the future will only allow an underscore. Note: the method performs the dash to underscore conversion to preserve compatibility, but future versions will no longer support it -- by :user:`melissa-kun-li`
+
+
v54.0.0
-------
diff --git a/changelog.d/1608.change.rst b/changelog.d/1608.change.rst
deleted file mode 100644
index c0f493b1..00000000
--- a/changelog.d/1608.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Removed the conversion of dashes to underscores in the :code:`extras_require` and :code:`data_files` of :code:`setup.cfg` to support the usage of dashes. Method will warn users when they use a dash-separated key which in the future will only allow an underscore. Note: the method performs the dash to underscore conversion to preserve compatibility, but future versions will no longer support it -- by :user:`melissa-kun-li` \ No newline at end of file
diff --git a/setup.cfg b/setup.cfg
index d60a9b26..18950611 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
license_files =
LICENSE
name = setuptools
-version = 54.0.0
+version = 54.1.0
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages