Skip to content

Commit 5b08ed0

Browse files
committed
Prepare for 4.0 release.
1 parent 84c0a0f commit 5b08ed0

File tree

4 files changed

+24
-13
lines changed

4 files changed

+24
-13
lines changed

README.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ managing your development workflow, making it easier to work on more
1111
than one project at a time without introducing conflicts in their
1212
dependencies.
1313

14+
**Warning:** The 4.x release includes some potentially incompatible
15+
changes for extensions from 3.x. The python modules for extensions are
16+
now *always* run with ``PWD=$WORKON_HOME`` (previously the value of
17+
PWD varied depending on the hook). The *shell* portion of any hook
18+
(anything sourced by the user's shell when the hook is run) is still
19+
run in the same place as before.
20+
1421
========
1522
Features
1623
========

announce.rst

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
=========================
2-
virtualenvwrapper 3.7.1
3-
=========================
1+
=======================
2+
virtualenvwrapper 4.0
3+
=======================
44

55
.. tags:: virtualenvwrapper release python
66

@@ -16,13 +16,17 @@ introducing conflicts in their dependencies.
1616
What's New?
1717
===========
1818

19-
- Rename functions for generating help so they do not pollute the
20-
global namespace, and especially so they do not interfere with tab
21-
completion. Contributed by ``davidszotten``.
22-
- Fix an issue with listing project templates if none are installed.
23-
- Fix an issue with the ``--python`` option to ``mkvirtualenv``
24-
becoming *sticky* for future calls that do not explicitly specify
25-
the option.
19+
**Warning:** This release includes some potentially incompatible
20+
changes for extensions. The python modules for extensions are now
21+
*always* run with ``PWD=$WORKON_HOME`` (previously the value of PWD
22+
varied depending on the hook). The *shell* portion of any hook
23+
(anything sourced by the user's shell when the hook is run) is still
24+
run in the same place as before.
25+
26+
- All tests pass under Python 2.6, 2.7, 3.2 and 3.3.
27+
- Fix the name of the script in an error message produced
28+
by ``virtualenvwrapper_lazy.sh``. (Contributed by
29+
:bbuser:`scottstvnsn`.)
2630

2731
Installing
2832
==========

docs/source/history.rst

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

5-
dev
5+
4.0
66
===
77

88
**Warning:** This release includes some potentially incompatible
@@ -12,7 +12,7 @@ varied depending on the hook). The *shell* portion of any hook
1212
(anything sourced by the user's shell when the hook is run) is still
1313
run in the same place as before.
1414

15-
- All tests pass under Python 3.2 and 3.3.
15+
- All tests pass under Python 2.6, 2.7, 3.2 and 3.3.
1616
- Fix the name of the script in an error message produced
1717
by ``virtualenvwrapper_lazy.sh``. (Contributed by
1818
:bbuser:`scottstvnsn`.)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
PROJECT = 'virtualenvwrapper'
4-
VERSION = '3.7.1'
4+
VERSION = '4.0'
55

66
from setuptools import setup, find_packages
77

0 commit comments

Comments
 (0)