diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e34f0fe..8006c2d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Version History +#### 0.4.0-20140602 + +* python-build: Add new Anaconda/Anaconda3 releases; anaconda-2.0.0, anaconda3-2.0.0 (#179) +* python-build: Add new CPython release; 2.7.7 (#180) +* python-build: Update default setuptools version (3.6 -> 4.0) (#181) +* python-build: Respect environment variables of `CPPFLAGS` and `LDFLAGS` (#168) +* python-build: Support for xz-compressed Python tarballs (#177) + #### 0.4.0-20140520 * python-build: Add new CPython release; 3.4.1 (#170, #171) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 432a92c5..f2fa2ed3 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="0.4.0-20140520" +version="0.4.0-20140602" 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 907f5564..b866d73b 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 0.4.0-20140520" ] + assert [ "${lines[0]}" == "pyenv 0.4.0-20140602" ] } @test "invalid command" {