summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO4
-rw-r--r--CHANGES.rst24
-rw-r--r--PKGBUILD2
3 files changed, 24 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d79e2ae7af32..6e5b921ecf63 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = python-pex
pkgdesc = Generates executable Python environments
- pkgver = 2.1.53
+ pkgver = 2.1.54
pkgrel = 1
url = https://github.com/pantsbuild/pex
changelog = CHANGES.rst
@@ -11,7 +11,7 @@ pkgbase = python-pex
makedepends = python-dephell
makedepends = python-sphinx
depends = python
- source = python-pex::git+https://github.com/pantsbuild/pex#tag=v2.1.53?signed
+ source = python-pex::git+https://github.com/pantsbuild/pex#tag=v2.1.54?signed
validpgpkeys = A1FE765B15233EAD18FA6ABB93E55CB567B5C626
sha256sums = SKIP
diff --git a/CHANGES.rst b/CHANGES.rst
index 72ae8ff25b39..72f6b28d5097 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,17 +1,35 @@
Release Notes
=============
+2.1.54
+------
+
+This release fixes a bug in ``--venv`` creation that could mask deeper
+errors populating PEX venvs.
+
+* Fix ``--venv`` mode short link creation. (#1505)
+ `PR #1505 <https://github.com/pantsbuild/pex/pull/1505>`_
+
2.1.53
------
This release fixes a bug identifying certain interpreters on macOS
-Monterey. Additionally, Pex now exposes the ``PEX`` environment
-variable inside running PEXes to allow application code to both detect
-it's running from a PEX and determine where that PEX is located.
+Monterey.
+
+Additionally, Pex has two new features:
+
+#. It now exposes the ``PEX`` environment variable inside running PEXes
+ to allow application code to both detect it's running from a PEX and
+ determine where that PEX is located.
+#. It now supports a ``--prompt`` option in the ``venv`` tool to allow
+ for customization of the venv activation prompt.
* Guard against fake interpreters. (#1500)
`PR #1500 <https://github.com/pantsbuild/pex/pull/1500>`_
+* Add support for setting custom venv prompts. (#1499)
+ `PR #1499 <https://github.com/pantsbuild/pex/pull/1499>`_
+
* Introduce the ``PEX`` env var. (#1495)
`PR #1495 <https://github.com/pantsbuild/pex/pull/1495>`_
diff --git a/PKGBUILD b/PKGBUILD
index 4c88c8fda881..163f5ab2bedd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Carlo Cabanilla <carlo.cabanilla@gmail.com>
pkgname=python-pex
-pkgver=2.1.53
+pkgver=2.1.54
pkgrel=1
arch=('any')
pkgdesc='Generates executable Python environments'