aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Heap <tim@timheap.me>2016-12-15 10:24:12 +1100
committerTim Heap <tim@timheap.me>2016-12-15 10:30:04 +1100
commitb92763bc598c489ea4e5c04dd9713bf7583fd546 (patch)
tree35225f0ffc4ae5489af300c7875de594fea48ef7
parent980c2c5afd20fb9f7e50cb8ec0c42abc664da352 (diff)
downloadexternal_python_setuptools-b92763bc598c489ea4e5c04dd9713bf7583fd546.tar.gz
external_python_setuptools-b92763bc598c489ea4e5c04dd9713bf7583fd546.tar.bz2
external_python_setuptools-b92763bc598c489ea4e5c04dd9713bf7583fd546.zip
Update changelog, ref #890
-rw-r--r--CHANGES.rst14
1 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7d6386c2..50c505a8 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,11 @@
+In development
+--------------
+
+* #890: Revert #849. ``global-exclude .foo`` will not match all
+ ``*.foo`` files any more. Package authors must add an explicit
+ wildcard, such as ``global-exclude *.foo``, to match all
+ ``.foo`` files. See #886, #849.
+
v31.0.1
-------
@@ -132,7 +140,11 @@ v28.5.0
* #810: Tests are now invoked with tox and not setup.py test.
* #249 and #450 via #764: Avoid scanning the whole tree
- when building the manifest.
+ when building the manifest. Also fixes a long-standing bug
+ where patterns in ``MANIFEST.in`` had implicit wildcard
+ matching. This caused ``global-exclude .foo`` to exclude
+ all ``*.foo`` files, but also ``global-exclude bar.py`` to
+ exclude ``foo_bar.py``.
v28.4.0
-------