From e707bdcbfe7e96436066a46f0dd019c4c967e575 Mon Sep 17 00:00:00 2001 From: John Sirois Date: Wed, 25 May 2022 16:37:37 -0600 Subject: [PATCH] Prepare the 2.1.90 release. (#1779) Closes #1769 --- CHANGES.rst | 18 ++++++++++++++++++ pex/version.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 290a65a46..b143816d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,22 @@ Release Notes ============= +2.1.90 +------ + +This release fixes Pex handling of sdists to be atomic and also fixes +lock files to be emitted ending with a newline. In addition, many typos +in Pex documentation were fixed in a contribution by Kian-Meng Ang. + +* Ensure Pip cache operations are atomic. (#1778) + `PR #1778 `_ + +* Ensure that lockfiles end in newlines. (#1774) + `PR #1770 `_ + +* Fix typos (#1773) + `PR #1773 `_ + 2.1.89 ------ @@ -9,8 +25,10 @@ well as long needed robust runtime interpreter selection. * Select PEX runtime interpreter robustly. (#1770) `PR #1770 `_ + * Upgrade PyPy checking to latest. (#1767) `PR #1767 `_ + * Add 3.11 support. (#1766) `PR #1766 `_ diff --git a/pex/version.py b/pex/version.py index 55cddd9b2..93eda527e 100644 --- a/pex/version.py +++ b/pex/version.py @@ -1,4 +1,4 @@ # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "2.1.89" +__version__ = "2.1.90"