From 6509d318f4d70f838cf66683931049379e06d703 Mon Sep 17 00:00:00 2001 From: Yamashita Yuu Date: Mon, 25 Aug 2014 10:21:26 +0900 Subject: [PATCH] v20140825 --- CHANGELOG.md | 8 ++++++++ libexec/pyenv---version | 2 +- test/pyenv.bats | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04aac45d..a802a650 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Version History +#### 20140825 + +* pyenv: Fix zsh completion with multiple words (#215) +* python-build: Display the package name of `hg` as `mercurial` in message (#212) +* python-build: Unset `PIP_REQUIRE_VENV` during build (#216) +* python-build: Set MACOSX_DEPLOYMENT_TARGET from the product version of OS X (#219, #220) +* python-build: Add new Jython release; jython2.7-beta3 (#223) + #### 20140705 * python-build: Add new CPython release; 2.7.8 (#201) diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 147f9b5c..363b0484 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20140705" +version="20140825" 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 c7f93189..298cb6e3 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 20140705" ] + assert [ "${lines[0]}" == "pyenv 20140825" ] } @test "invalid command" {