diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b829a77..306693a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Version History +#### 20150719 + +* python-build: Add CPython `3.6-dev` (#413) +* python-build: Add Anaconda/Anaconda3 2.3.0 +* python-build: Fix download URL of portable PyPy 2.6 (fixes #389) +* python-build: Use custom `MACOSX_DEPLOYMENT_TARGET` if defined (#312) +* python-build: Use original CPython repository instead of mirror at bitbucket.org as the source of `*-dev` versions (#409) +* python-build: Pin pip version to 1.5.6 for python 3.1.5 (#351) + #### 20150601 * python-build: Add PyPy 2.6.0 diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 17bacb11..b3e5e8f7 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20150601" +version="20150719" 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 c2703902..a6cb33d6 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 20150601" ] + assert [ "${lines[0]}" == "pyenv 20150719" ] } @test "invalid command" {