File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog for VirtualEnvWrapper Powershell
2
2
3
- ## 2020-11.17 (v0.1.2)
3
+ ## 2020-11-26 (v0.1.3)
4
+ * Fix issue #21 due to working branch accidentaly merged on master
5
+
6
+ ## 2020-11-17 (v0.1.2)
4
7
* Fix bug on Get-VirtualEnvs for user with space in name
5
8
* Fix uncomplete environment
6
9
Original file line number Diff line number Diff line change 23
23
24
24
$WORKON_HOME = $Env: WORKON_HOME
25
25
$VIRTUALENWRAPPER_HOOK_DIR = ' '
26
- $Version = " 0.2.0 "
26
+ $Version = " 0.1.3 "
27
27
28
28
#
29
29
# Set the default path and create the directory if don't exist
@@ -238,7 +238,7 @@ function Workon {
238
238
}
239
239
240
240
if (Get-IsInPythonVenv -eq $true ) {
241
- Deactivate
241
+ deactivate
242
242
}
243
243
244
244
$activate_path = " $new_pyenv \Scripts\Activate.ps1"
@@ -247,7 +247,7 @@ function Workon {
247
247
return
248
248
}
249
249
250
- Load - Module $activate_path
250
+ Import -Module $activate_path
251
251
252
252
$Env: OLD_PYTHON_PATH = $Env: PYTHON_PATH
253
253
$Env: VIRTUAL_ENV = " $new_pyenv "
You can’t perform that action at this time.
0 commit comments