summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-07-27 11:21:22 -0400
committerJason R. Coombs <jaraco@jaraco.com>2017-07-27 11:21:22 -0400
commit4688a682bacd7b509b8b676df21d48b9b77f5822 (patch)
treeb4c53a0246509b58661948618d14834cc4067ce2
parent9e814c4b6e64be648f4444e07a52400263d732b6 (diff)
downloadpython-setuptools-git-issue-889.tar.gz
Update changelog. Ref #889.issue-889
-rw-r--r--CHANGES.rst27
1 files changed, 23 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 04a56753..23dd2c3b 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,9 +1,28 @@
-v36.2.5
+v37.0.0
-------
-* #889: Thanks to test revealed in #1062, identified and
- corrected two flaws in disabling the interpolation of setup.cfg
- files.
+* #889: Thanks to test revealed in #1062, several things
+ became apparent:
+
+ - The functionality introduced in 32.3.0 was never
+ activated. Changes in another branch made around the
+ same time meant that the new behavior was never
+ called.
+ - Even if the behavior had been called, there was another
+ flaw that would cause crashes.
+ - The Python 2 distutils implementation also performed
+ interpolation on config files.
+
+ As a result, the scope of #889 is now much broader - to
+ disable interpolation on config files (mainly setup.cfg)
+ for all Python versions where previously interpolation was
+ available.
+
+ This change means that:
+
+ - config files that previously escaped % characters must
+ now no longer escape those characters.
+ - config files that used interpolation will no longer work.
v36.2.4
-------