diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-27 11:21:22 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-07-27 11:21:22 -0400 |
commit | 4688a682bacd7b509b8b676df21d48b9b77f5822 (patch) | |
tree | b4c53a0246509b58661948618d14834cc4067ce2 | |
parent | 9e814c4b6e64be648f4444e07a52400263d732b6 (diff) | |
download | python-setuptools-git-issue-889.tar.gz |
Update changelog. Ref #889.issue-889
-rw-r--r-- | CHANGES.rst | 27 |
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 ------- |