diff --git a/CHANGELOG.md b/CHANGELOG.md index 85582e98..a34e6f2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Version History +#### 20140628 + +* python-build: Add new Anaconda releases; anaconda-2.0.1, anaconda3-2.0.1 (#195) +* python-build: Add new PyPy3 release; pypy3-2.3.1 (#198) +* python-build: Add ancient CPython releases; 2.1.3, 2.2.3, 2.3.7 (#199) +* python-build: Use `ez_setup.py` and `get-pip.py` instead of installing them from tarballs (#194) +* python-build: Add support for command-line options to `ez_setup.py` and `get-pip.py` (#200) + #### 20140615 * python-build: Update default setuptools version (4.0.1 -> 5.0) (#190) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 247bc18b..d7bc204f 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20140615" +version="20140628" 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 b70889fa..7bfc9c2a 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 20140615" ] + assert [ "${lines[0]}" == "pyenv 20140628" ] } @test "invalid command" {