aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools.txt
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-17 19:01:15 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-17 19:01:15 +0000
commit63d507adccf8207a40e2b22a8c11f79efb83f56a (patch)
tree079ea1f80004c18837a93f3bdc66b039d8d5127a /setuptools.txt
parent30f1c5ad93e21ec007d371313e2a27e4d0efb661 (diff)
downloadexternal_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.tar.gz
external_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.tar.bz2
external_python_setuptools-63d507adccf8207a40e2b22a8c11f79efb83f56a.zip
``Distribution`` objects now implement the ``IResourceProvider`` and
``IMetadataProvider`` interfaces, so you don't need to reference the (no longer available) ``metadata`` attribute to get at these interfaces. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041133
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-xsetuptools.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt
index 8a1edcf7..01e8994e 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -1342,6 +1342,16 @@ Release Notes/Change History
* Fixed ``pkg_resources.resource_exists()`` not working correctly.
+ * Many ``pkg_resources`` API changes:
+
+ * ``Distribution`` objects now implement the ``IResourceProvider`` and
+ ``IMetadataProvider`` interfaces, so you don't need to reference the (no
+ longer available) ``metadata`` attribute to get at these interfaces.
+
+ * ``Distribution`` and ``Requirement`` both have a ``project_name``
+ attribute for the project name they refer to. (Previously these were
+ ``name`` and ``distname`` attributes.)
+
0.5a13
* Fixed a bug in resource extraction from nested packages in a zipped egg.