diff --git a/CHANGELOG.md b/CHANGELOG.md index e0220f8b..45a00349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Version History +#### 20150524 + +* pyenv: Improve `pyenv version`, if there is one missing (#290) +* pyenv: Improve pip-rehash to handle versions in command, like `pip2` and `pip3.4` (#368) +* python-build: Add CPython release; 2.7.10 (#380) +* python-build: Add Miniconda/Miniconda3 3.9.1 and Anaconda/Anaconda3 2.2.0 (#375, #376) + #### 20150504 * python-build: Add Jython 2.7.0 diff --git a/libexec/pyenv---version b/libexec/pyenv---version index b029ab55..cb7edd30 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20150504" +version="20150524" 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 858419d2..8458d07f 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 20150504" ] + assert [ "${lines[0]}" == "pyenv 20150524" ] } @test "invalid command" {