diff options
author | Donald Stufft <donald@stufft.io> | 2016-01-19 19:55:05 -0500 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2016-01-19 19:55:05 -0500 |
commit | 130399fdd13152d09e5cb133bf72abd95dc7e5b0 (patch) | |
tree | bdcd6e4b760bf325d4f079a8f4c1612927df4cf4 | |
parent | dab5c53840868f568cb5801511d456a8be4a7103 (diff) | |
download | virtualenv-130399fdd13152d09e5cb133bf72abd95dc7e5b0.tar.gz |
bump version for release
-rw-r--r-- | docs/changes.rst | 2 | ||||
-rwxr-xr-x | virtualenv.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/changes.rst b/docs/changes.rst index 3ca4e2d..95416fd 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,7 +1,7 @@ Release History =============== -14.0.0 (unreleased) +14.0.0 (2016-01-19) ------------------- * **BACKWARDS INCOMPATIBLE** Drop support for Python 3.2. diff --git a/virtualenv.py b/virtualenv.py index 9b03bec..4f5b119 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -33,7 +33,7 @@ try: except ImportError: import configparser as ConfigParser -__version__ = "13.2.0.dev0" +__version__ = "14.0.0" virtualenv_version = __version__ # legacy if sys.version_info < (2, 6): |