diff --git a/CHANGELOG.md b/CHANGELOG.md index b4b3119c..988d0733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Version History +#### 20150124 + +* python-build: Import recent changes from ruby-build v20150112 +* python-build: Prevent adding `/Library/Python/X.X/site-packages` to `sys.path` whtn `--enable-framework` is enabled on OS X. Thanks @s1341 (#292) +* python-build: Add new IronPython release; 2.7.5 + #### 20141211 * pyenv: Add bulit-in `pip-rehash` feature. You don't need to install [pyenv-pip-rehash](https://github.com/yyuu/pyenv-pip-rehash) anymore. diff --git a/libexec/pyenv---version b/libexec/pyenv---version index 1b5f10ed..e09832c8 100755 --- a/libexec/pyenv---version +++ b/libexec/pyenv---version @@ -12,7 +12,7 @@ set -e [ -n "$PYENV_DEBUG" ] && set -x -version="20141211" +version="20150124" 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 c96793ec..0ed4948a 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 20141211" ] + assert [ "${lines[0]}" == "pyenv 20150124" ] } @test "invalid command" {