Skip to content

Commit

Permalink
update version and draft announcement
Browse files Browse the repository at this point in the history
  • Loading branch information
dhellmann committed Apr 13, 2011
1 parent 3b6fc01 commit e1d1e10
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 9 deletions.
36 changes: 30 additions & 6 deletions announce.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
=======================
virtualenvwrapper 2.7
=======================

What is virtualenvwrapper
=========================

Expand All @@ -7,15 +11,35 @@ virtual environments and otherwise managing your development workflow,
making it easier to work on more than one project at a time without
introducing conflicts in their dependencies.

What's New in 2.2.1
What's New in 2.7
=================

Version 2.2.1 is a bug-fix release:
This release clears most of the bugs from the backlog and adds a few
new features.

- Escape ``which`` calls to avoid aliases. (#46)
- Integrate Manuel Kaufmann's patch to unset GREP_OPTIONS before
calling grep. (#51)
- Escape ``$`` in regex to resolve #53.
- Fix problem with space in WORKON_HOME path (#79).
- Fix problem with argument processing in ``lsvirtualenv`` under zsh
(#86). Thanks to Nat Williams for the bug report and patch.
- If WORKON_HOME does not exist, create it. Patch from Carl
Karsten. Test updates based on patches from Matt Austin
and Hugo Lopes Tavares.
- Merge in contributions from Paul McLanahan to fix the test harness
to ensure that the test scripts are actually running under the
expected shell.
- Merge in new shell command ``toggleglobalsitepackages`` from Paul
McLanahan. The new command changes the configuration of the active
virtualenv to enable or disable the global ``site-packages``
directory.
- Fixed some tests that were failing under ksh on Ubuntu 10.10.
- Document the ``VIRTUALENVWRAPPER_VIRTUALENV`` variable.
- Implement suggestion by Van Lindberg to have
``VIRTUALENVWRAPPER_HOOK_DIR`` and ``VIRTUALENVWRAPPER_LOG_DIR``
variables to control the locations of hooks and logs.
- Enabled tab completion for ``showvirtualenv`` (#78).
- Fixed a problem with running ``rmvirtualenv`` from within the
environment being removed (#83).
- Removed use of -e option in calls to grep for better portability
(#85`).

.. _virtualenv: http://pypi.python.org/pypi/virtualenv

Expand Down
2 changes: 1 addition & 1 deletion docs/en/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Release History
===============

dev
2.7

- Fix problem with space in WORKON_HOME path (:bbissue:`79`).
- Fix problem with argument processing in lsvirtualenv under zsh
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# built documents.
#
# The short X.Y version.
version = '2.6.3'
version = '2.7'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
PROJECT = 'virtualenvwrapper'

# Change docs/sphinx/conf.py too!
VERSION = '2.6.3'
VERSION = '2.7'

# Bootstrap installation of Distribute
import distribute_setup
Expand Down

0 comments on commit e1d1e10

Please sign in to comment.