Parcourir la source

v20140614

pull/191/merge v20140614
Yamashita Yuu il y a 12 ans
Parent
révision
2b5ee0c425
3 fichiers modifiés avec 11 ajouts et 2 suppressions
  1. +9
    -0
      CHANGELOG.md
  2. +1
    -1
      libexec/pyenv---version
  3. +1
    -1
      test/pyenv.bats

+ 9
- 0
CHANGELOG.md Voir le fichier

@ -1,5 +1,14 @@
## Version History
#### 20140614
* pyenv: Change versioning schema (`v0.4.0-YYYYMMDD` -> `vYYYYMMDD`)
* python-build: Add new PyPy release; pypy-2.3.1, pypy-2.3.1-src
* python-build: Create symlinks for executables with version suffix (#182)
* python-build: Use SHA2 as default digest algorithm to verify downloaded archives
* python-build: Update default setuptools version (4.0 -> 4.0.1) (#183)
* python-build: Import recent changes from ruby-build v20140524 (#184)
#### 0.4.0-20140602
* python-build: Add new Anaconda/Anaconda3 releases; anaconda-2.0.0, anaconda3-2.0.0 (#179)

+ 1
- 1
libexec/pyenv---version Voir le fichier

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

+ 1
- 1
test/pyenv.bats Voir le fichier

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

Chargement…
Annuler
Enregistrer