diff --git a/announce.rst b/announce.rst index 83ef696..ad881d7 100644 --- a/announce.rst +++ b/announce.rst @@ -1,6 +1,6 @@ -======================= - virtualenvwrapper 3.6 -======================= +========================= + virtualenvwrapper 3.6.1 +========================= .. tags:: virtualenvwrapper release python @@ -16,19 +16,10 @@ introducing conflicts in their dependencies. What's New? =========== -- Switch to stevedore_ for plugin management -- mkvirtualenv_help should use ``$VIRTUALENVWRAPPER_PYTHON`` instead - of calling ``virtualenv`` directly (issue 148). -- Fix issue with lazy-loader code under zsh (issue 144). -- Fix issue with ``noclobber`` option under zsh - (issue 137). Fix based on patch from rob_b. -- Fix documentation for ``add2virtualenv`` to show the correct name - for the file containing the new path entry. (contributed by - rvoicilas) -- Fix problem with ``virtualenvwrapper_show_workon_options`` under - zsh with ``chpwd`` functions that produce output. (issue 153) - -.. _stevedore: http://pypi.python.org/pypi/stevedore +- Replace realpath with a more portable way of converting a relative + path to an absolute path, used with the ``--python`` option to + mkvirtualenv (contributed by Radu Voicilas). +- Posted release to PyPI, resolving download redirect issue. Installing ========== diff --git a/docs/source/history.rst b/docs/source/history.rst index 4ac73b1..32a3293 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,14 @@ Release History =============== +3.6.1 + + - Replace realpath with a more portable way of converting a relative + path to an absolute path, used with the ``--python`` option to + mkvirtualenv (contributed by Radu Voicilas, :bbuser:`rvoicilas`). + - Posted release to PyPI, resolving download redirect + issue. (:bbissue:`171` and :bbissue:`172`) + 3.6 - Switch to stevedore_ for plugin management diff --git a/setup.py b/setup.py index 563355d..3f752b1 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python PROJECT = 'virtualenvwrapper' -VERSION = '3.6' +VERSION = '3.6.1' # Bootstrap installation of Distribute import distribute_setup