summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):