diff options
| author | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:23 -0500 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2016-01-21 19:48:23 -0500 |
| commit | 684d14a8bd7497ff6bbea5328b96b1dab2b4c9a4 (patch) | |
| tree | 10451ee731aa38b95467e85ad324d8bf48ddb8ea | |
| parent | 1b843e30119e0068427c81ca935c373d992a42a9 (diff) | |
| download | virtualenv-684d14a8bd7497ff6bbea5328b96b1dab2b4c9a4.tar.gz | |
Bump for release
| -rw-r--r-- | docs/changes.rst | 6 | ||||
| -rwxr-xr-x | virtualenv.py | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst index b9c3e7a..5529c40 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,9 +1,13 @@ Release History =============== -14.1.0 (unreleased) +14.0.1 (2016-01-21) ------------------- +* Upgrade from pip 8.0.0 to 8.0.2. + +* Fix the default of ``--(no-)download`` to default to downloading. + 14.0.0 (2016-01-19) ------------------- diff --git a/virtualenv.py b/virtualenv.py index 2b9a266..c4f025a 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -33,7 +33,7 @@ try: except ImportError: import configparser as ConfigParser -__version__ = "14.1.0.dev0" +__version__ = "14.0.1" virtualenv_version = __version__ # legacy if sys.version_info < (2, 6): |
