Skip to content

Commit 6135d1d

Browse files
committed
update version number before release
1 parent c0b52e9 commit 6135d1d

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

announce.rst

+17-16
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,28 @@
77
What is virtualenvwrapper?
88
==========================
99

10-
virtualenvwrapper_ is a set of extensions to Ian Bicking's virtualenv_
11-
tool. The extensions include wrappers for creating and deleting
12-
virtual environments and otherwise managing your development workflow,
13-
making it easier to work on more than one project at a time without
10+
virtualenvwrapper_ is a set of extensions to virtualenv_. The
11+
extensions include wrappers for creating and deleting virtual
12+
environments and otherwise managing your development workflow, making
13+
it easier to work on more than one project at a time without
1414
introducing conflicts in their dependencies.
1515

1616
What's New?
1717
===========
1818

19-
- Rewrite ``cpvirtualenv`` to use `virtualenv-clone`_
20-
instead of making the new environment relocatable. Contributed by
21-
Justin Barber (barberj). This also resolves a problem
22-
with cpvirtualenv not honoring the ``--no-site-packages`` flag
23-
(issue 102).
24-
- Update docs with link to `virtualenvwrapper-win`_ port by David
25-
Marble.
26-
- Use ``command`` to avoid functions named the same as common
27-
utilities. (issue 119)
28-
29-
.. _virtualenv-clone: http://pypi.python.org/pypi/virtualenv-clone
30-
.. _virtualenvwrapper-win: http://pypi.python.org/pypi/virtualenvwrapper-win
19+
- Switch to stevedore_ for plugin management
20+
- mkvirtualenv_help should use ``$VIRTUALENVWRAPPER_PYTHON`` instead
21+
of calling ``virtualenv`` directly (issue 148).
22+
- Fix issue with lazy-loader code under zsh (issue 144).
23+
- Fix issue with ``noclobber`` option under zsh
24+
(issue 137`). Fix based on patch from rob_b.
25+
- Fix documentation for ``add2virtualenv`` to show the correct name
26+
for the file containing the new path entry. (contributed by
27+
rvoicilas)
28+
- Fix problem with ``virtualenvwrapper_show_workon_options`` under
29+
zsh with ``chpwd`` functions that produce output. (issue 153)
30+
31+
.. _stevedore: http://pypi.python.org/pypi/stevedore
3132

3233
Installing
3334
==========

docs/source/history.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Release History
33
===============
44

5-
dev
5+
3.6
66

77
- Switch to stevedore_ for plugin management
88
- mkvirtualenv_help should use ``$VIRTUALENVWRAPPER_PYTHON`` instead

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
PROJECT = 'virtualenvwrapper'
4-
VERSION = '3.5'
4+
VERSION = '3.6'
55

66
# Bootstrap installation of Distribute
77
import distribute_setup

0 commit comments

Comments
 (0)