summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--CHANGES.rst22
-rw-r--r--PKGBUILD2
3 files changed, 25 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0d4d44bdf736..66b4666dc42b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = python-pex
pkgdesc = Generates executable Python environments
- pkgver = 2.1.97
+ pkgver = 2.1.98
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.97?signed
+ source = python-pex::git+https://github.com/pantsbuild/pex#tag=v2.1.98?signed
validpgpkeys = A1FE765B15233EAD18FA6ABB93E55CB567B5C626
sha256sums = SKIP
diff --git a/CHANGES.rst b/CHANGES.rst
index cfaab5109b49..6ce157f9f992 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,28 @@
Release Notes
=============
+2.1.98
+------
+
+This releases fixes regressions in foreign `--platform` handling and
+artifact downloading introduced by #1787 in Pex 2.1.91.
+
+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`.
+
+* Tags should be patched for --platform. (#1846)
+ `PR #1846 <https://github.com/pantsbuild/pex/pull/1846>`_
+
+* Add support for importing from PEXes. (#1845)
+ `PR #1845 <https://github.com/pantsbuild/pex/pull/1845>`_
+
+* Fix artifact downloads for foreign platforms. #1851
+ `PR #1851 <https://github.com/pantsbuild/pex/pull/1851>`_
+
2.1.97
------
diff --git a/PKGBUILD b/PKGBUILD
index c0bb9f791033..009a9aaef606 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
## GPG key: https://github.com/jsirois.gpg
pkgname=python-pex
-pkgver=2.1.97
+pkgver=2.1.98
pkgrel=1
arch=('any')
pkgdesc='Generates executable Python environments'