diff --git a/CHANGELOG.md b/CHANGELOG.md index 891e819..4e422af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ ## Version History +#### 1.0.0 + +* Use similar versioning scheme as pyenv; YYYYMMDD -> X.Y.Z + #### 20160716 * Suppress activate/deactivate messages by default (#169, #170, #171) -+ Source conda package activate/deactivat scripts if exist (#173) +* Source conda package activate/deactivat scripts if exist (#173) * Use `source` in favor of `.` for `fish` (#175) * Use `python -m venv` instead of `pyvenv` due to deprecation of `pyvenv` after 3.6 (#184, #185) diff --git a/bin/pyenv-virtualenv b/bin/pyenv-virtualenv index 13cd55a..e308f99 100755 --- a/bin/pyenv-virtualenv +++ b/bin/pyenv-virtualenv @@ -9,7 +9,7 @@ # -f/--force Install even if the version appears to be installed already # -PYENV_VIRTUALENV_VERSION="20160716" +PYENV_VIRTUALENV_VERSION="1.0.0" set -e [ -n "$PYENV_DEBUG" ] && set -x diff --git a/test/version.bats b/test/version.bats index 67efd28..05b5c83 100644 --- a/test/version.bats +++ b/test/version.bats @@ -15,7 +15,7 @@ setup() { run pyenv-virtualenv --version assert_success - [[ "$output" == "pyenv-virtualenv 20"*" (virtualenv 1.11)" ]] + [[ "$output" == "pyenv-virtualenv "?.?.?" (virtualenv 1.11)" ]] unstub pyenv-prefix unstub pyenv-exec @@ -30,7 +30,7 @@ setup() { run pyenv-virtualenv --version assert_success - [[ "$output" == "pyenv-virtualenv 20"*" (python -m venv)" ]] + [[ "$output" == "pyenv-virtualenv "?.?.?" (python -m venv)" ]] unstub pyenv-prefix teardown_m_venv "3.4.1"