From b8a7de8a3ce2207eb5ca42e80becb17f1fbd98c6 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Sun, 6 Jul 2014 00:35:50 +0900 Subject: [PATCH] v20140705 (fixes #204) --- CHANGELOG.md | 5 +++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a34e6f2c..04aac45d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Version History +#### 20140705 + +* python-build: Add new CPython release; 2.7.8 (#201) +* python-build: Support `SETUPTOOLS_VERSION` and `PIP_VERSION` to allow installing specific version of setuptools/pip (#202) + #### 20140628 * python-build: Add new Anaconda releases; anaconda-2.0.1, anaconda3-2.0.1 (#195) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index d7bc204f..147f9b5c 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20140628" +version="20140705" 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 7bfc9c2a..c7f93189 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 20140628" ] + assert [ "${lines[0]}" == "pyenv 20140705" ] } @test "invalid command" {