This commit is contained in:
Ivan Pozdeev 2026-04-29 08:26:10 +03:00
parent 6481d1451d
commit 485090e713
No known key found for this signature in database
GPG Key ID: FB6A628DCF06DCD7
3 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# Version History # Version History
## Release v2.6.28
* pyenv-latest: fast path for when there is an exact match by @native-api in https://github.com/pyenv/pyenv/pull/3437
## Release v2.6.27 ## Release v2.6.27
* commands: fast path for --sh, replace sort|uniq with sort -u by @jakelodwick in https://github.com/pyenv/pyenv/pull/3423 * commands: fast path for --sh, replace sort|uniq with sort -u by @jakelodwick in https://github.com/pyenv/pyenv/pull/3423
* which: update the `pyenv help global` tip by @native-api in https://github.com/pyenv/pyenv/pull/3424 * which: update the `pyenv help global` tip by @native-api in https://github.com/pyenv/pyenv/pull/3424

View File

@ -12,7 +12,7 @@
set -e set -e
[ -n "$PYENV_DEBUG" ] && set -x [ -n "$PYENV_DEBUG" ] && set -x
version="2.6.27" version="2.6.28"
git_revision="" git_revision=""
if cd "${BASH_SOURCE%/*}" 2>/dev/null && git remote -v 2>/dev/null | grep -q pyenv; then if cd "${BASH_SOURCE%/*}" 2>/dev/null && git remote -v 2>/dev/null | grep -q pyenv; then

View File

@ -14,7 +14,7 @@
# -g/--debug Build a debug version # -g/--debug Build a debug version
# #
PYTHON_BUILD_VERSION="2.6.27" PYTHON_BUILD_VERSION="2.6.28"
OLDIFS="$IFS" OLDIFS="$IFS"