diff --git a/CHANGELOG.md b/CHANGELOG.md index 45a00349..6b829a77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ ## Version History +#### 20150601 + +* python-build: Add PyPy 2.6.0 +* python-build: Add PyPy 2.5.1 portable +* python-build: Add CPython 3.5.0 beta releases; 3.5.0b1 and 3.5.0b2 +* python-build: Removed CPython 3.5.0 alpha releases +* python-build: Fix inverted condition for `--altinstall` of ensurepip (#255) +* python-build: Skip installing `setuptools` by `ez_setup.py` explicitly (fixes #381) +* python-build: Import changes from ruby-build v20150519 + #### 20150524 * pyenv: Improve `pyenv version`, if there is one missing (#290) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index cb7edd30..17bacb11 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20150524" +version="20150601" if cd "$PYENV_ROOT" 2>/dev/null; then git_revision="$(git describe --tags HEAD 2>/dev/null || true)" diff --git a/test/pyenv.bats b/test/pyenv.bats index 8458d07f..c2703902 100644 --- a/test/pyenv.bats +++ b/test/pyenv.bats @@ -5,7 +5,7 @@ load test_helper @test "blank invocation" { run pyenv assert_success - assert [ "${lines[0]}" == "pyenv 20150524" ] + assert [ "${lines[0]}" == "pyenv 20150601" ] } @test "invalid command" {