summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2015-08-22 18:46:55 -0400
committerDonald Stufft <donald@stufft.io>2015-08-22 18:46:55 -0400
commit78daccc915361005eb5fc40069e3f4facc354eda (patch)
tree6e7458e4f92bcf98f84e1bc377749eb03a923f80
parent87497c49fe6d87494947a7fb9f558282298a7ec3 (diff)
downloadpip-78daccc915361005eb5fc40069e3f4facc354eda.tar.gz
Update changelog and version7.1.2
-rw-r--r--CHANGES.txt6
-rwxr-xr-xpip/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 953b1db7c..13a98665d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,9 @@
+**7.1.2 (2015-08-22)**
+
+* Don't raise an error if pip is not installed when checking for the latest pip
+ version.
+
+
**7.1.1 (2015-08-20)**
* Check that the wheel cache directory is writable before we attempt to write
diff --git a/pip/__init__.py b/pip/__init__.py
index b04cb00e0..114bd59b4 100755
--- a/pip/__init__.py
+++ b/pip/__init__.py
@@ -30,7 +30,7 @@ import pip.cmdoptions
cmdoptions = pip.cmdoptions
# The version as used in the setup.py and the docs conf.py
-__version__ = "7.2.0.dev0"
+__version__ = "7.1.2"
logger = logging.getLogger(__name__)