From 38eb9fe94866aea7fd97e1a82c7f9d27249377fb Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Wed, 8 Jan 2014 23:17:39 +0900 Subject: [PATCH] v0.4.0-20140110 --- CHANGELOG.md | 15 +++++++++++++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b78bb14..635d7b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ ## Version History +#### 0.4.0-20140110 + +* pyenv: Reliably detect parent shell in `pyenv init` (#93) +* pyenv: Import recent changes from rbenv 0.4.0 +* pyenv: Import `bats` tests from rbenv 0.4.0 +* python-build: Add new CPython releases candidates; 3.4.0b2 +* python-build: Add ruby-build style patching feature (#91) +* python-build: Set `RPATH` if `--enable-shared` was given (#65, #66, 82) +* python-build: Update default setuptools version (2.0 -> 2.1) +* python-build: Update default pip version (1.4.1 -> 1.5) +* python-build: Activate friendly CPython during build if the one is not activated (8fa6b4a1847851919ad7857c6c42ed809a4d277b) +* python-build: Fix broken install.sh +* python-build: Import recent changes from ruby-build v20131225.1 +* version-ext-compat: Removed from default plugin. Please use [pyenv-version-ext](https://github.com/yyuu/pyenv-version-ext) instead. + #### 0.4.0-20131217 * python-build: Fix broken build of CPython 3.3+ on Darwin diff --git a/libexec/pyenv---version b/libexec/pyenv---version index f1247e7d..4b51a930 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="0.4.0-20131217" +version="0.4.0-20140110" 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 bcc9b2b8..eae0a75a 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-20131217" ] + assert [ "${lines[0]}" == "pyenv 0.4.0-20140110" ] } @test "invalid command" {