Skip to content

Commit 09e1d40

Browse files
committed
Merge branch 'release/1.6.2' into develop
2 parents 578d06d + ff040ec commit 09e1d40

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#
4343
# The short X.Y version.
4444

45-
release = "1.6.1"
45+
release = "1.6.2"
4646
version = ".".join(release.split(".")[:2])
4747

4848
# There are two options for replacing |today|: either, you set today to some

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
setup(name='virtualenv',
2727
# If you change the version here, change it in virtualenv.py and
2828
# docs/conf.py as well
29-
version="1.6.1",
29+
version="1.6.2",
3030
description="Virtual Python Environment builder",
3131
long_description=long_description,
3232
classifiers=[

tests/test_virtualenv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def test_version():
66
"""Should have a version string"""
7-
assert virtualenv.virtualenv_version == "1.6.1", "Should have version"
7+
assert virtualenv.virtualenv_version == "1.6.2", "Should have version"
88

99

1010
@patch('os.path.exists')

virtualenv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# If you change the version here, change it in setup.py
66
# and docs/conf.py as well.
7-
virtualenv_version = "1.6.1"
7+
virtualenv_version = "1.6.2"
88

99
import base64
1010
import sys

0 commit comments

Comments
 (0)