diff --git a/AUTHORS.txt b/AUTHORS.txt index 38b6f5ab1..fe0531a79 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -145,6 +145,7 @@ Dustin Ingram Dwayne Bailey Ed Morley <501702+edmorley@users.noreply.github.com> Ed Morley +ekristina elainechan Eli Schwartz Eli Schwartz diff --git a/NEWS.rst b/NEWS.rst index 6da5377f0..750a53238 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -7,6 +7,22 @@ .. towncrier release notes start +19.1.1 (2019-05-06) +=================== + +Features +-------- + +- Restore ``pyproject.toml`` handling to how it was with pip 19.0.3 to prevent + the need to add ``--no-use-pep517`` when installing in editable mode. (`#6434 `_) + +Bug Fixes +--------- + +- Fix a regression that caused `@` to be quoted in pypiserver links. + This interfered with parsing the revision string from VCS urls. (`#6440 `_) + + 19.1 (2019-04-23) ================= diff --git a/news/6322.trivial b/news/6322.trivial deleted file mode 100644 index b0e0b3e1c..000000000 --- a/news/6322.trivial +++ /dev/null @@ -1 +0,0 @@ -Use a fixture creating a temporary directory to improve code reuse in TestSafeFileCache (tests/unit/test_download.py) \ No newline at end of file diff --git a/news/6434.feature b/news/6434.feature deleted file mode 100644 index 12d4d316d..000000000 --- a/news/6434.feature +++ /dev/null @@ -1,2 +0,0 @@ -Restore ``pyproject.toml`` handling to how it was with pip 19.0.3 to prevent -the need to add ``--no-use-pep517`` when installing in editable mode. diff --git a/news/6440.bugfix b/news/6440.bugfix deleted file mode 100644 index b3a2c8518..000000000 --- a/news/6440.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fix a regression that caused `@` to be quoted in pypiserver links. -This interfered with parsing the revision string from VCS urls. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 75df03576..5d05da312 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1 +1 @@ -__version__ = "19.2.dev0" +__version__ = "19.1.1"