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
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
# other places throughout the built documents.
#
# The short X.Y version.
version = '0.2.1'
version = '0.3'
# 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
# non-false value, then it is used:
Expand Down
22 changes: 11 additions & 11 deletions docs/news.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
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
return. This will make it easier to invoke programmatically.
Expand All @@ -11,17 +15,14 @@ hg tip
(previously they went in
``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
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``
Expand All @@ -32,11 +33,10 @@ hg tip
Most importantly, anything that package requires will also be
installed by pip.

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

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

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


version = '0.2.2'
version = '0.3'

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

0 comments on commit ade11f6

Please sign in to comment.