From a7f5a19a24664e372e31a71e9773f135851453d7 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Fri, 10 Jan 2014 13:21:41 +0900 Subject: [PATCH] v0.4.0-20140110.1 --- CHANGELOG.md | 4 ++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 635d7b44..6e8c2acb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Version History +#### 0.4.0-20140110.1 + +* python-build: Fix build error of CPython 2.x on the platform where the `gcc` is llvm-gcc. + #### 0.4.0-20140110 * pyenv: Reliably detect parent shell in `pyenv init` (#93) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 4b51a930..c5e874fe 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="0.4.0-20140110" +version="0.4.0-20140110.1" 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 eae0a75a..2b33d9fc 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-20140110" ] + assert [ "${lines[0]}" == "pyenv 0.4.0-20140110.1" ] } @test "invalid command" {