aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGES.rst13
-rw-r--r--changelog.d/1697.change.rst1
-rw-r--r--changelog.d/1749.change.rst1
-rw-r--r--changelog.d/1750.change.rst1
-rw-r--r--changelog.d/1756.change.rst1
-rw-r--r--changelog.d/1769.change.rst1
-rw-r--r--changelog.d/1776.doc.rst1
-rw-r--r--changelog.d/1788.change.rst1
-rw-r--r--changelog.d/1790.change.rst2
-rw-r--r--setup.cfg2
11 files changed, 15 insertions, 11 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 87acb5ef..5a453660 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 41.0.1
+current_version = 41.1.0
commit = True
tag = True
diff --git a/CHANGES.rst b/CHANGES.rst
index 9da22537..9f9603c0 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,16 @@
+v41.1.0
+-------
+
+* #1697: Moved most of the constants from setup.py to setup.cfg
+* #1749: Fixed issue with the PEP 517 backend where building a source distribution would fail if any tarball existed in the destination directory.
+* #1750: Fixed an issue with PEP 517 backend where wheel builds would fail if the destination directory did not already exist.
+* #1756: Forse metadata-version >= 1.2. when project urls are present.
+* #1769: Improve ``package_data`` check: ensure the dictionary values are lists/tuples of strings.
+* #1788: Changed compatibility fallback logic for ``html.unescape`` to avoid accessing ``HTMLParser.unescape`` when not necessary. ``HTMLParser.unescape`` is deprecated and will be removed in Python 3.9.
+* #1790: Added the file path to the error message when a ``UnicodeDecodeError`` occurs while reading a metadata file.
+* #1776: Use license classifiers rather than the license field.
+
+
v41.0.1
-------
diff --git a/changelog.d/1697.change.rst b/changelog.d/1697.change.rst
deleted file mode 100644
index 44818b3c..00000000
--- a/changelog.d/1697.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Moved most of the constants from setup.py to setup.cfg
diff --git a/changelog.d/1749.change.rst b/changelog.d/1749.change.rst
deleted file mode 100644
index de678072..00000000
--- a/changelog.d/1749.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed issue with the PEP 517 backend where building a source distribution would fail if any tarball existed in the destination directory.
diff --git a/changelog.d/1750.change.rst b/changelog.d/1750.change.rst
deleted file mode 100644
index 7a22229e..00000000
--- a/changelog.d/1750.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed an issue with PEP 517 backend where wheel builds would fail if the destination directory did not already exist.
diff --git a/changelog.d/1756.change.rst b/changelog.d/1756.change.rst
deleted file mode 100644
index 5c908d35..00000000
--- a/changelog.d/1756.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Forse metadata-version >= 1.2. when project urls are present.
diff --git a/changelog.d/1769.change.rst b/changelog.d/1769.change.rst
deleted file mode 100644
index d48a23b6..00000000
--- a/changelog.d/1769.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Improve ``package_data`` check: ensure the dictionary values are lists/tuples of strings.
diff --git a/changelog.d/1776.doc.rst b/changelog.d/1776.doc.rst
deleted file mode 100644
index d4f1dbca..00000000
--- a/changelog.d/1776.doc.rst
+++ /dev/null
@@ -1 +0,0 @@
-Use license classifiers rather than the license field.
diff --git a/changelog.d/1788.change.rst b/changelog.d/1788.change.rst
deleted file mode 100644
index d8a49fd4..00000000
--- a/changelog.d/1788.change.rst
+++ /dev/null
@@ -1 +0,0 @@
-Changed compatibility fallback logic for ``html.unescape`` to avoid accessing ``HTMLParser.unescape`` when not necessary. ``HTMLParser.unescape`` is deprecated and will be removed in Python 3.9.
diff --git a/changelog.d/1790.change.rst b/changelog.d/1790.change.rst
deleted file mode 100644
index e4a7998d..00000000
--- a/changelog.d/1790.change.rst
+++ /dev/null
@@ -1,2 +0,0 @@
-Added the file path to the error message when a ``UnicodeDecodeError`` occurs
-while reading a metadata file.
diff --git a/setup.cfg b/setup.cfg
index ff87464b..3bcf4429 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -19,7 +19,7 @@ universal = 1
[metadata]
name = setuptools
-version = 41.0.1
+version = 41.1.0
description = Easily download, build, install, upgrade, and uninstall Python packages
author = Python Packaging Authority
author_email = distutils-sig@python.org