From 0b397b42c5159942c73a882ca5f33364502e1c3a Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Tue, 21 Jan 2020 18:12:53 +0530 Subject: [PATCH] Bump for release --- NEWS.rst | 9 +++++++++ news/7621.bugfix | 1 - src/pip/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 news/7621.bugfix diff --git a/NEWS.rst b/NEWS.rst index 949065dfa..9e03d5ce6 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -7,6 +7,15 @@ .. towncrier release notes start +20.0.1 (2020-01-21) +=================== + +Bug Fixes +--------- + +- Rename an internal module, to avoid ImportErrors due to improper uninstallation. (`#7621 `_) + + 20.0 (2020-01-21) ================= diff --git a/news/7621.bugfix b/news/7621.bugfix deleted file mode 100644 index 1ed04aae4..000000000 --- a/news/7621.bugfix +++ /dev/null @@ -1 +0,0 @@ -Rename an internal module, to avoid ImportErrors due to improper uninstallation. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index a41767bd9..9cea7bbe5 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING: from typing import List, Optional -__version__ = "20.1.dev0" +__version__ = "20.0.1" def main(args=None):