mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
v20140825
This commit is contained in:
parent
474767618d
commit
6509d318f4
3 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,13 @@
|
||||||
## Version History
|
## 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
|
#### 20140705
|
||||||
|
|
||||||
* python-build: Add new CPython release; 2.7.8 (#201)
|
* python-build: Add new CPython release; 2.7.8 (#201)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
version="20140705"
|
version="20140825"
|
||||||
|
|
||||||
if cd "$PYENV_ROOT" 2>/dev/null; then
|
if cd "$PYENV_ROOT" 2>/dev/null; then
|
||||||
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
||||||
|
|
|
@ -5,7 +5,7 @@ load test_helper
|
||||||
@test "blank invocation" {
|
@test "blank invocation" {
|
||||||
run pyenv
|
run pyenv
|
||||||
assert_success
|
assert_success
|
||||||
assert [ "${lines[0]}" == "pyenv 20140705" ]
|
assert [ "${lines[0]}" == "pyenv 20140825" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "invalid command" {
|
@test "invalid command" {
|
||||||
|
|
Loading…
Reference in a new issue