summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Schlichting <hanno@hannosch.eu>2009-07-16 19:07:47 +0200
committerHanno Schlichting <hanno@hannosch.eu>2009-07-16 19:07:47 +0200
commit9b373023daa6b8d44ee680b3604e450ba642229b (patch)
treef1a5fbc2ab8c63bc190775ab8bde9f64b5f24cfc
parentb83d5bd69240600575bc086100d9bab8ca854073 (diff)
downloadpython-setuptools-git-9b373023daa6b8d44ee680b3604e450ba642229b.tar.gz
Figured out where to put changelog entries.
--HG-- branch : distribute extra : rebase_source : 2e8a06177af5f03cf47803ef59bdab093d35a008
-rwxr-xr-xEasyInstall.txt4
-rwxr-xr-xpkg_resources.txt14
-rwxr-xr-xsetuptools.txt15
3 files changed, 30 insertions, 3 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt
index b0341e88..75f9fb1e 100755
--- a/EasyInstall.txt
+++ b/EasyInstall.txt
@@ -1218,6 +1218,10 @@ Release Notes/Change History
============================
0.6final
+ * Immediately close all file handles. This closes
+ http://bitbucket.org/tarek/distribute/issue/3.
+
+0.6c9
* Fixed ``win32.exe`` support for .pth files, so unnecessary directory nesting
is flattened out in the resulting egg. (There was a case-sensitivity
problem that affected some distributions, notably ``pywin32``.)
diff --git a/pkg_resources.txt b/pkg_resources.txt
index ccb15fae..08d6d4dd 100755
--- a/pkg_resources.txt
+++ b/pkg_resources.txt
@@ -1693,13 +1693,23 @@ Release Notes/Change History
----------------------------
0.6final
+ * Allow to find_on_path on systems with tight permissions to fail gracefully.
+ This closes http://bitbucket.org/tarek/distribute/issue/9.
+
+ * Corrected inconsistency between documentation and code of add_entry.
+ This closes http://bitbucket.org/tarek/distribute/issue/8.
+
+ * Immediately close all file handles. This closes
+ http://bitbucket.org/tarek/distribute/issue/3.
+
+0.6c9
* Fix ``resource_listdir('')`` always returning an empty list for zipped eggs.
-
+
0.6c7
* Fix package precedence problem where single-version eggs installed in
``site-packages`` would take precedence over ``.egg`` files (or directories)
installed in ``site-packages``.
-
+
0.6c6
* Fix extracted C extensions not having executable permissions under Cygwin.
diff --git a/setuptools.txt b/setuptools.txt
index edbe8b09..efbef559 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -2612,9 +2612,22 @@ Release Notes/Change History
----------------------------
0.6final
+ * Protected against failures in tarfile extraction. This closes
+ http://bitbucket.org/tarek/distribute/issue/10.
- * Added compatibility with Subversion 1.6.
+ * Made Jython api_tests.txt doctest compatible. This closes
+ http://bitbucket.org/tarek/distribute/issue/7.
+ * sandbox.py replaced builtin type file with builtin function open. This
+ closes http://bitbucket.org/tarek/distribute/issue/6.
+
+ * Immediately close all file handles. This closes
+ http://bitbucket.org/tarek/distribute/issue/3.
+
+ * Added compatibility with Subversion 1.6. This references
+ http://bitbucket.org/tarek/distribute/issue/1.
+
+0.6c9
* Fixed a missing files problem when using Windows source distributions on
non-Windows platforms, due to distutils not handling manifest file line
endings correctly.