Skip to content

Commit

Permalink
update news and versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Aug 3, 2010
1 parent 37d1bf3 commit 2404a34
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -40,7 +40,7 @@


# General information about the project. # General information about the project.
project = 'pip' 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 # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
Expand Down
19 changes: 18 additions & 1 deletion docs/news.txt
@@ -1,16 +1,33 @@
News for pip 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. * Pip now accepts file:// index URLs. Thanks Dave Abrahams.


* Various cleanup to make test-running more consistent and less fragile. * Various cleanup to make test-running more consistent and less fragile.
Thanks Dave Abrahams. Thanks Dave Abrahams.


* Real Windows support (with passing tests). Thanks Dave Abrahams. * 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 0.7.2
----- -----


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@
import os import os
from setuptools import setup from setuptools import setup


version = "0.7.1" version = "0.8"


doc_dir = os.path.join(os.path.dirname(__file__), 'docs') doc_dir = os.path.join(os.path.dirname(__file__), 'docs')
index_filename = os.path.join(doc_dir, 'index.txt') index_filename = os.path.join(doc_dir, 'index.txt')
Expand Down

0 comments on commit 2404a34

Please sign in to comment.