From ef8c8b8ef274b74b70c8a227d562e381101cbcda Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Fri, 16 May 2014 21:07:19 +0900 Subject: [PATCH] v20140516 --- CHANGELOG.md | 14 ++++++++++++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e98232..3dac4ad6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ ## Version History +#### 0.4.0-20140516 + +* pyenv: Prefer gawk over awk if both are available. +* python-build: Add new PyPy release; pypy-2.3, pypy-2.3-src (#162) +* python-build: Add new Anaconda release; anaconda-1.9.2 (#155) +* python-build: Add new Miniconda releases; miniconda-3.3.0, minoconda-3.4.2, miniconda3-3.3.0, miniconda3-3.4.2 +* python-build: Add new Stackless releases; stackless-2.7.3, stackless-2.7.4, stackless-2.7.5, stackless-2.7.6, stackless-3.2.5, stackless-3.3.5 (#164) +* python-build: Add IronPython versions (setuptools and pip will work); ironpython-2.7.4, ironpython-dev +* python-build: Add new Jython beta release; jython-2.7-beta2 +* python-build: Update default setuptools version (3.4.1 -> 3.6) +* python-build: Update default pip version (1.5.4 -> 1.5.5) +* python-build: Update GNU Readline (6.2 -> 6.3) +* python-build: Import recent changes from ruby-build v20140420 + #### 0.4.0-20140404 * pyenv: Reads only the first word from version file. This is as same behavior as rbenv. diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 028051b5..7ded8ef0 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="0.4.0-20140404" +version="0.4.0-20140516" 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 07118642..b5f705bc 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-20140404" ] + assert [ "${lines[0]}" == "pyenv 0.4.0-20140516" ] } @test "invalid command" {