Sfoglia il codice sorgente

Merge branch 'release-0.4.0-20140110'

pull/101/merge
Yamashita Yuu 10 anni fa
parent
commit
efd9c1cd48
3 ha cambiato i file con 17 aggiunte e 2 eliminazioni
  1. +15
    -0
      CHANGELOG.md
  2. +1
    -1
      libexec/pyenv---version
  3. +1
    -1
      test/pyenv.bats

+ 15
- 0
CHANGELOG.md Vedi File

@ -1,5 +1,20 @@
## Version History
#### 0.4.0-20140110
* pyenv: Reliably detect parent shell in `pyenv init` (#93)
* pyenv: Import recent changes from rbenv 0.4.0
* pyenv: Import `bats` tests from rbenv 0.4.0
* python-build: Add new CPython releases candidates; 3.4.0b2
* python-build: Add ruby-build style patching feature (#91)
* python-build: Set `RPATH` if `--enable-shared` was given (#65, #66, 82)
* python-build: Update default setuptools version (2.0 -> 2.1)
* python-build: Update default pip version (1.4.1 -> 1.5)
* python-build: Activate friendly CPython during build if the one is not activated (8fa6b4a1847851919ad7857c6c42ed809a4d277b)
* python-build: Fix broken install.sh
* python-build: Import recent changes from ruby-build v20131225.1
* version-ext-compat: Removed from default plugin. Please use [pyenv-version-ext](https://github.com/yyuu/pyenv-version-ext) instead.
#### 0.4.0-20131217
* python-build: Fix broken build of CPython 3.3+ on Darwin

+ 1
- 1
libexec/pyenv---version Vedi File

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

+ 1
- 1
test/pyenv.bats Vedi File

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

Caricamento…
Annulla
Salva