summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernat Gabor <bgabor8@bloomberg.net>2019-08-23 09:19:21 +0100
committerBernat Gabor <bgabor8@bloomberg.net>2019-08-23 09:19:58 +0100
commit38c4b3a9b6e83dbdff9c6b9a58bbf28db201b750 (patch)
tree56e9771a6da9f116716000e722ec328b409dadd6
parent1fdd10c75fa84cdc1c3662dfe2f48b3207479a48 (diff)
downloadvirtualenv-38c4b3a9b6e83dbdff9c6b9a58bbf28db201b750.tar.gz
prepare release 16.7.4
-rw-r--r--docs/changelog/1398.bugfix.rst1
-rwxr-xr-xvirtualenv.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/changelog/1398.bugfix.rst b/docs/changelog/1398.bugfix.rst
new file mode 100644
index 0000000..5d16b68
--- /dev/null
+++ b/docs/changelog/1398.bugfix.rst
@@ -0,0 +1 @@
+* fix powershell activation when sourced
diff --git a/virtualenv.py b/virtualenv.py
index b01b5ba..98e2031 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -46,7 +46,7 @@ except ImportError:
# noinspection PyPep8Naming
import configparser as ConfigParser
-__version__ = "16.7.3"
+__version__ = "16.7.4"
virtualenv_version = __version__ # legacy
DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1"
if sys.version_info < (2, 7):