diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/news.txt | 12 | ||||
-rw-r--r-- | docs/usage.txt | 10 |
2 files changed, 22 insertions, 0 deletions
diff --git a/docs/news.txt b/docs/news.txt index f3d34a6dc..b2b983370 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -13,6 +13,15 @@ Beta and final releases planned for the second half of 2012. develop (unreleased) ------------------- +* Fixed issue #605 - pypi mirror support broken on some DNS responses. Thanks + philwhin. + +* Fixed issue #355 - pip uninstall removes files it didn't install. Thanks + pjdelport. + +* Fixed issues #493, #494, #440, and #573 related to improving support for the + user installation scheme. Thanks Marcus Smith. + * Write failure log to temp file if default location is not writable. Thanks andreigc. @@ -54,6 +63,9 @@ develop (unreleased) * Fixed issue #427 - clearer error message on a malformed VCS url. Thanks Thomas Fenzl. +* Added support for using any of the built in guaranteed algorithms in ``hashlib`` + as a checksum hash. + 1.1 (2012-02-16) ---------------- diff --git a/docs/usage.txt b/docs/usage.txt index 991d0d54e..283f25db1 100644 --- a/docs/usage.txt +++ b/docs/usage.txt @@ -106,6 +106,16 @@ within a :ref:`requirements file <requirements-files>` in addition to on the command line directly. +Package Checksum Hashes +''''''''''''''''''''''' + +:term:`PyPI` provides a md5 hash of a package by having the link to the +package include a #md5=<hash>. pip supports this, as well as any of the +guaranteed hashlib algorithms (sha1, sha224, sha384, sha256, sha512, md5). + +The hash fragment is case sensitive (i.e. sha1 not SHA1). + + Uninstall packages ------------------ |