1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

update news and versions for release

This commit is contained in:
Ian Bicking 2010-08-03 13:02:48 -05:00
parent 37d1bf39a7
commit 2404a34eba
3 changed files with 20 additions and 3 deletions

View file

@ -40,7 +40,7 @@ master_doc = 'index'
# General information about the project.
project = 'pip'
copyright = '2009, The Open Planning Project'
copyright = '2010, Ian Bicking and contributors'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the

View file

@ -1,9 +1,12 @@
News for pip
============
tip
0.8
---
* Track which ``build/`` directories pip creates, never remove directories
it doesn't create. From Hugo Lopes Tavares.
* Pip now accepts file:// index URLs. Thanks Dave Abrahams.
* Various cleanup to make test-running more consistent and less fragile.
@ -11,6 +14,20 @@ tip
* Real Windows support (with passing tests). Thanks Dave Abrahams.
* ``pip-2.7`` etc. scripts are created (Python-version specific scripts)
* ``contrib/build-standalone`` script creates a runnable ``.zip`` form of
pip, from Jannis Leidel
* Editable git repos are updated when reinstalled
* Fix problem with ``--editable`` when multiple ``.egg-info/`` directories
are found.
* A number of VCS-related fixes for ``pip freeze``, from Hugo Lopes Tavares.
* Significant test framework changes, from Hugo Lopes Tavares.
0.7.2
-----

View file

@ -2,7 +2,7 @@ import sys
import os
from setuptools import setup
version = "0.7.1"
version = "0.8"
doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.txt')