Skip to content

Commit a3bc42c

Browse files
committed
1 parent 0fd8a16 commit a3bc42c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
## Version History
22

3+
#### 1.0.0
4+
5+
* Use similar versioning scheme as pyenv; YYYYMMDD -> X.Y.Z
6+
37
#### 20160716
48

59
* Suppress activate/deactivate messages by default (#169, #170, #171)
6-
+ Source conda package activate/deactivat scripts if exist (#173)
10+
* Source conda package activate/deactivat scripts if exist (#173)
711
* Use `source` in favor of `.` for `fish` (#175)
812
* Use `python -m venv` instead of `pyvenv` due to deprecation of `pyvenv` after 3.6 (#184, #185)
913

bin/pyenv-virtualenv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# -f/--force Install even if the version appears to be installed already
1010
#
1111

12-
PYENV_VIRTUALENV_VERSION="20160716"
12+
PYENV_VIRTUALENV_VERSION="1.0.0"
1313

1414
set -e
1515
[ -n "$PYENV_DEBUG" ] && set -x

test/version.bats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ setup() {
1515
run pyenv-virtualenv --version
1616

1717
assert_success
18-
[[ "$output" == "pyenv-virtualenv 20"*" (virtualenv 1.11)" ]]
18+
[[ "$output" == "pyenv-virtualenv "?.?.?" (virtualenv 1.11)" ]]
1919

2020
unstub pyenv-prefix
2121
unstub pyenv-exec
@@ -30,7 +30,7 @@ setup() {
3030
run pyenv-virtualenv --version
3131

3232
assert_success
33-
[[ "$output" == "pyenv-virtualenv 20"*" (python -m venv)" ]]
33+
[[ "$output" == "pyenv-virtualenv "?.?.?" (python -m venv)" ]]
3434

3535
unstub pyenv-prefix
3636
teardown_m_venv "3.4.1"

0 commit comments

Comments
 (0)