summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2016-03-05 20:13:19 -0500
committerDonald Stufft <donald@stufft.io>2016-03-05 20:13:19 -0500
commitecf1f38f89a6852c252399f4793809c21a39d20e (patch)
tree01bc45b8dfe362c61fbaf0d4f2e18bc89a6e4114
parent0d797f10287d1aedd683b87187442f0ba7d7774a (diff)
downloadvirtualenv-ecf1f38f89a6852c252399f4793809c21a39d20e.tar.gz
Update version and changelog
-rw-r--r--docs/changes.rst9
-rwxr-xr-xvirtualenv.py2
2 files changed, 9 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst
index 7eb0925..b28444b 100644
--- a/docs/changes.rst
+++ b/docs/changes.rst
@@ -1,12 +1,19 @@
Release History
===============
-14.1.0 (unreleased)
+15.0.0 (unreleased)
-------------------
* Remove the `virtualenv-N.N` script from the package; this can no longer be correctly created from a wheel installation.
Resolves :issue:`851`, :issue:`692`
+* Remove accidental runtime dependency on pip by extracting certificate in the
+ subprocess.
+
+* Upgrade setuptools 20.2.2.
+
+* Upgrade pip to 8.1.0.
+
14.0.6 (2016-02-07)
-------------------
diff --git a/virtualenv.py b/virtualenv.py
index 99084ac..b6cee64 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -36,7 +36,7 @@ try:
except ImportError:
import configparser as ConfigParser
-__version__ = "14.1.0.dev0"
+__version__ = "15.0.0.dev0"
virtualenv_version = __version__ # legacy
if sys.version_info < (2, 6):