diff options
| author | Donald Stufft <donald@stufft.io> | 2016-02-07 14:43:24 -0500 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2016-02-07 14:43:24 -0500 |
| commit | 7a9dae48433950ac4d659aabba19c686d6d690c8 (patch) | |
| tree | 4111544a9799d219647e2644d731125a3f40835d | |
| parent | f4de1064499baaa75cc394b392765f7a575d74ce (diff) | |
| download | virtualenv-7a9dae48433950ac4d659aabba19c686d6d690c8.tar.gz | |
Bump version for release
| -rw-r--r-- | docs/changes.rst | 5 | ||||
| -rwxr-xr-x | virtualenv.py | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst index 34f422f..e2a027b 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,13 +1,16 @@ Release History =============== -14.1.0 (unreleased) +14.0.6 (2016-02-07) ------------------- * Upgrade setuptools to 20.0 * Upgrade wheel to 0.29.0 +* Fix an error where virtualenv didn't pass in a working ssl certificate for + pip, causing "weird" errors related to ssl. + 14.0.5 (2016-02-01) ------------------- diff --git a/virtualenv.py b/virtualenv.py index 8dd235d..0b4a94d 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -35,7 +35,7 @@ try: except ImportError: import configparser as ConfigParser -__version__ = "14.1.0.dev0" +__version__ = "14.0.6" virtualenv_version = __version__ # legacy if sys.version_info < (2, 6): |
