From 2b5ee0c425db820493fc3585e58bf921bdccc3fc Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Sat, 14 Jun 2014 14:38:13 +0900 Subject: [PATCH] v20140614 --- CHANGELOG.md | 9 +++++++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8006c2d8..838aa21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Version History +#### 20140614 + +* pyenv: Change versioning schema (`v0.4.0-YYYYMMDD` -> `vYYYYMMDD`) +* python-build: Add new PyPy release; pypy-2.3.1, pypy-2.3.1-src +* python-build: Create symlinks for executables with version suffix (#182) +* python-build: Use SHA2 as default digest algorithm to verify downloaded archives +* python-build: Update default setuptools version (4.0 -> 4.0.1) (#183) +* python-build: Import recent changes from ruby-build v20140524 (#184) + #### 0.4.0-20140602 * python-build: Add new Anaconda/Anaconda3 releases; anaconda-2.0.0, anaconda3-2.0.0 (#179) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 82e61b58..548e0a84 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20140602" +version="20140614" 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 2e7ecf0d..8671ed05 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 20140602" ] + assert [ "${lines[0]}" == "pyenv 20140614" ] } @test "invalid command" {