Skip to content

Commit e1d1e10

Browse files
committed
update version and draft announcement
1 parent 3b6fc01 commit e1d1e10

File tree

4 files changed

+33
-9
lines changed

4 files changed

+33
-9
lines changed

announce.rst

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
=======================
2+
virtualenvwrapper 2.7
3+
=======================
4+
15
What is virtualenvwrapper
26
=========================
37

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

10-
What's New in 2.2.1
14+
What's New in 2.7
1115
=================
1216

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

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

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

docs/en/history.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Release History
33
===============
44

5-
dev
5+
2.7
66

77
- Fix problem with space in WORKON_HOME path (:bbissue:`79`).
88
- Fix problem with argument processing in lsvirtualenv under zsh

docs/sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '2.6.3'
50+
version = '2.7'
5151
# The full version, including alpha/beta/rc tags.
5252
release = version
5353

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
PROJECT = 'virtualenvwrapper'
44

55
# Change docs/sphinx/conf.py too!
6-
VERSION = '2.6.3'
6+
VERSION = '2.7'
77

88
# Bootstrap installation of Distribute
99
import distribute_setup

0 commit comments

Comments
 (0)