mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
v20140404
This commit is contained in:
parent
83e820d869
commit
3cde540ca0
3 changed files with 14 additions and 2 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,5 +1,17 @@
|
||||||
## Version History
|
## Version History
|
||||||
|
|
||||||
|
#### 0.4.0-20140404
|
||||||
|
|
||||||
|
* pyenv: Reads only the first word from version file. This is as same behavior as rbenv.
|
||||||
|
* python-build: Fix build of Tkinter with Tcl/Tk 8.6 (#131)
|
||||||
|
* python-build: Fix build problem with Readline 6.3 (#126, #131, #149, #152)
|
||||||
|
* python-build: Do not exit with errors even if some of modules are absent (#131)
|
||||||
|
* python-build: MacOSX was mispelled as MaxOSX in `anaconda_architecture` (#136)
|
||||||
|
* python-build: Use default `cc` as the C Compiler to build CPython (#148, #150)
|
||||||
|
* python-build: Display value from `pypy_architecture` and `anaconda_architecture` on errors (yyuu/pyenv-virtualenv#18)
|
||||||
|
* python-build: Remove old development version; 2.6-dev
|
||||||
|
* python-build: Update default setuptools version (3.3 -> 3.4.1)
|
||||||
|
|
||||||
#### 0.4.0-20140317
|
#### 0.4.0-20140317
|
||||||
|
|
||||||
* python-build: Add new CPython releases; 3.4.0 (#133)
|
* python-build: Add new CPython releases; 3.4.0 (#133)
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$PYENV_DEBUG" ] && set -x
|
[ -n "$PYENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
version="0.4.0-20140317"
|
version="0.4.0-20140404"
|
||||||
|
|
||||||
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 0.4.0-20140317" ]
|
assert [ "${lines[0]}" == "pyenv 0.4.0-20140404" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "invalid command" {
|
@test "invalid command" {
|
||||||
|
|
Loading…
Reference in a new issue