Skip to content

Commit

Permalink
update news/versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Jan 21, 2009
1 parent 4ea6f24 commit ade11f6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -41,9 +41,9 @@
# other places throughout the built documents. # other places throughout the built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.2.1' version = '0.3'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.2.1' release = '0.3'


# There are two options for replacing |today|: either, you set today to some # There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used: # non-false value, then it is used:
Expand Down
22 changes: 11 additions & 11 deletions docs/news.txt
@@ -1,8 +1,12 @@
News for pip News for pip
============ ============


hg tip 0.3
------ ---

* 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 * Do not use ``sys.exit()`` from inside the code, instead use a
return. This will make it easier to invoke programmatically. return. This will make it easier to invoke programmatically.
Expand All @@ -11,17 +15,14 @@ hg tip
(previously they went in (previously they went in
``site-packages/install-record-Package.txt``). ``site-packages/install-record-Package.txt``).


* 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``.

* Fix a problem with ``pip freeze`` not including ``-e svn+`` when an * Fix a problem with ``pip freeze`` not including ``-e svn+`` when an
svn structure is peculiar. svn structure is peculiar.


* Allow ``pip -E`` to work with a virtualenv that uses a different * Allow ``pip -E`` to work with a virtualenv that uses a different
version of Python than the parent environment. version of Python than the parent environment.


* Fixed Win32 virtualenv (``-E``) option.

* Search the links passed in with ``-f`` for packages. * Search the links passed in with ``-f`` for packages.


* Detect zip files, even when the file doesn't have a ``.zip`` * Detect zip files, even when the file doesn't have a ``.zip``
Expand All @@ -32,11 +33,10 @@ hg tip
Most importantly, anything that package requires will also be Most importantly, anything that package requires will also be
installed by pip. installed by pip.


* Added support for editable packages created from Git, Mercurial and Bazaar * Add a ``--path`` option to ``pip un/zip``, so you can avoid zipping
repositories and ability to freeze them. Refactored support for version files that are outside of where you expect.
control systems.


* Fixed Win32 virtualenv (``-E``) option. * Add ``--simulate`` option to ``pip zip``.


0.2.1 0.2.1
----- -----
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,2 +1,2 @@
[egg_info] [egg_info]
tag_build = dev #tag_build = dev
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
import os import os




version = '0.2.2' version = '0.3'


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 ade11f6

Please sign in to comment.