v20150524

This commit is contained in:
Yamashita Yuu 2015-05-24 10:53:17 +09:00
parent cc94ad39f1
commit 1b066598ce
3 changed files with 9 additions and 2 deletions

View file

@ -1,5 +1,12 @@
## Version History
#### 20150524
* pyenv: Improve `pyenv version`, if there is one missing (#290)
* pyenv: Improve pip-rehash to handle versions in command, like `pip2` and `pip3.4` (#368)
* python-build: Add CPython release; 2.7.10 (#380)
* python-build: Add Miniconda/Miniconda3 3.9.1 and Anaconda/Anaconda3 2.2.0 (#375, #376)
#### 20150504
* python-build: Add Jython 2.7.0

View file

@ -12,7 +12,7 @@
set -e
[ -n "$PYENV_DEBUG" ] && set -x
version="20150504"
version="20150524"
if cd "$PYENV_ROOT" 2>/dev/null; then
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"

View file

@ -5,7 +5,7 @@ load test_helper
@test "blank invocation" {
run pyenv
assert_success
assert [ "${lines[0]}" == "pyenv 20150504" ]
assert [ "${lines[0]}" == "pyenv 20150524" ]
}
@test "invalid command" {