===
- Added support for editable packages created from Git, Mercurial and Bazaar
repositories and ability to freeze them. Refactored support for version
control systems.
- Do not use ``sys.exit()`` from inside the code, instead use a
return. This will make it easier to invoke programmatically.
- Put the install record in ``Package.egg-info/installed-files.txt``
(previously they went in
``site-packages/install-record-Package.txt``).
- Fix a problem with ``pip freeze`` not including ``-e svn+`` when an
svn structure is peculiar.
- Allow ``pip -E`` to work with a virtualenv that uses a different
version of Python than the parent environment.
- Fixed Win32 virtualenv (``-E``) option.
- Search the links passed in with ``-f`` for packages.
- Detect zip files, even when the file doesn't have a ``.zip``
extension and it is served with the wrong Content-Type.
- Installing editable from existing source now works, like ``pip
install -e some/path/`` will install the package in ``some/path/``.
Most importantly, anything that package requires will also be
installed by pip.
- Add a ``--path`` option to ``pip un/zip``, so you can avoid zipping
files that are outside of where you expect.
- Add ``--simulate`` option to ``pip zip``.