summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2018-10-31 15:06:44 +0000
committerBernat Gabor <bgabor8@bloomberg.net>2018-10-31 15:06:44 +0000
commit4ad2742eec5266c2e42b0651d1cd4b78393699c4 (patch)
tree8eb43202ee5991084118d009a6a71ff365a4c020
parent379f748357e2012da45dc5ed336627fceb926757 (diff)
downloadvirtualenv-16.1.0.tar.gz
release as 16.1.016.1.0
-rw-r--r--docs/changes.rst2
-rwxr-xr-xsrc/virtualenv.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst
index 6c354e9..176436c 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -2,7 +2,7 @@ Release History
===============
-16.1.0 (unreleased)
+16.1.0 (2018-10-31)
-------------------
* Fixed documentation to use pypi.org and correct curl options; :issue:`1042`
* bug fix: ensure prefix is absolute when creating a new virtual environment :issue:`1208`
diff --git a/src/virtualenv.py b/src/virtualenv.py
index 23c3aff..4b57cde 100755
--- a/src/virtualenv.py
+++ b/src/virtualenv.py
@@ -39,7 +39,7 @@ try:
except ImportError:
import configparser as ConfigParser
-__version__ = "16.1.0.dev0"
+__version__ = "16.1.0"
virtualenv_version = __version__ # legacy
if sys.version_info < (2, 7):