summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Martinez2022-07-15 10:27:37 -0500
committerLuis Martinez2022-07-15 10:27:37 -0500
commit7e5fd48aa917aee2141cd07f2726b47ba1e661fa (patch)
tree5ee7fec336906fc43869f3a18f7481c14c1d3a7f
parentb099a142a5eaa4c1c9f1ff3dbf5da1fcd4bc72b8 (diff)
downloadaur-7e5fd48aa917aee2141cd07f2726b47ba1e661fa.tar.gz
update to 2.1.99
-rw-r--r--.SRCINFO4
-rw-r--r--CHANGES.rst24
-rw-r--r--PKGBUILD2
3 files changed, 20 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 66b4666dc42b..f352393650ae 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = python-pex
pkgdesc = Generates executable Python environments
- pkgver = 2.1.98
+ pkgver = 2.1.99
pkgrel = 1
url = https://github.com/pantsbuild/pex
changelog = CHANGES.rst
@@ -14,7 +14,7 @@ pkgbase = python-pex
depends = python
provides = pex
replaces = pex
- source = python-pex::git+https://github.com/pantsbuild/pex#tag=v2.1.98?signed
+ source = python-pex::git+https://github.com/pantsbuild/pex#tag=v2.1.99?signed
validpgpkeys = A1FE765B15233EAD18FA6ABB93E55CB567B5C626
sha256sums = SKIP
diff --git a/CHANGES.rst b/CHANGES.rst
index 6ce157f9f992..134903f81151 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,18 +1,28 @@
Release Notes
=============
+2.1.99
+------
+
+This release fixes a concurrency bug in the ``pex --lock ...`` artifact
+downloading.
+
+* Fix ``pex --lock ...`` concurrent download errors. (#1854)
+ `PR #1854 <https://github.com/pantsbuild/pex/pull/1854>`_
+
2.1.98
------
-This releases fixes regressions in foreign `--platform` handling and
-artifact downloading introduced by #1787 in Pex 2.1.91.
+This releases fixes regressions in foreign ``--platform`` handling and
+artifact downloading introduced by #1787 in Pex 2.1.91 and #1811 in
+2.1.93.
-In addition, PEXes can now be used as `sys.path` entries. Once on the
-`sys.path`, via `PYTHONPATH` or other means, the code in the PEX can be
-made importable by first importing `__pex__` either as its own
-stand-alone import statement; e.g.: `import __pex__; import psutil` or
+In addition, PEXes can now be used as ``sys.path`` entries. Once on the
+``sys.path``, via ``PYTHONPATH`` or other means, the code in the PEX can
+be made importable by first importing ``__pex__`` either as its own
+stand-alone import statement; e.g.: ``import __pex__; import psutil`` or
as a prefix of the code to import from the PEX; e.g.:
-`from __pex__ import psutil`.
+``from __pex__ import psutil``.
* Tags should be patched for --platform. (#1846)
`PR #1846 <https://github.com/pantsbuild/pex/pull/1846>`_
diff --git a/PKGBUILD b/PKGBUILD
index 009a9aaef606..e4b74dacfa32 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
## GPG key: https://github.com/jsirois.gpg
pkgname=python-pex
-pkgver=2.1.98
+pkgver=2.1.99
pkgrel=1
arch=('any')
pkgdesc='Generates executable Python environments'