summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2013-03-08 00:14:17 +0100
committerJannis Leidel <jannis@leidel.info>2013-03-08 00:14:17 +0100
commitf731ddc882ede9b45ba9f0815ff68734784dbfcd (patch)
tree36316b3b2a1caeaca6a7a95083c6bf935ed2bee3
parent5cab1b9979d9e08e25d3bcb591f3e3be8a572062 (diff)
downloadvirtualenv-1.9.1.tar.gz
Bumped version up a notch.1.9.1
-rw-r--r--docs/news.txt6
-rwxr-xr-xvirtualenv.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/docs/news.txt b/docs/news.txt
index 7b489b2..d352be0 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -14,6 +14,12 @@ Changes & News
``$ENV/bin/python`` and re-running virtualenv on the same target directory
with the upgraded Python.
+1.9.1 (2013-03-08)
+~~~~~~~~~~~~~~~~~~
+
+* Updated to pip 1.3.1 that fixed a major backward incompatible change of
+ parsing URLs to externally hosted packages that got accidentily included
+ in pip 1.3.
1.9 (2013-03-07)
~~~~~~~~~~~~~~~~
diff --git a/virtualenv.py b/virtualenv.py
index c53ed35..ccb6eec 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -4,7 +4,7 @@
# If you change the version here, change it in setup.py
# and docs/conf.py as well.
-__version__ = "1.9" # following best practices
+__version__ = "1.9.1" # following best practices
virtualenv_version = __version__ # legacy, again
import base64