This repository was archived by the owner on Jun 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## 2.0.4
3
+ Bug Fix
4
+ * Remove PSGallery availability checks (#374 )
5
+
2
6
## 2.0.3
3
7
Bug fixes and Improvements
4
8
* Fix CommandAlreadyAvailable error for PackageManagement module (#333 )
Original file line number Diff line number Diff line change 1
1
@ {
2
2
RootModule = ' PSModule.psm1'
3
- ModuleVersion = ' 2.0.3 '
3
+ ModuleVersion = ' 2.0.4 '
4
4
GUID = ' 1d73a601-4a6c-43c5-ba3f-619b18bbb404'
5
5
Author = ' Microsoft Corporation'
6
6
CompanyName = ' Microsoft Corporation'
@@ -54,6 +54,11 @@ PrivateData = @{
54
54
ProjectUri = ' https://go.microsoft.com/fwlink/?LinkId=828955'
55
55
LicenseUri = ' https://go.microsoft.com/fwlink/?LinkId=829061'
56
56
ReleaseNotes = @'
57
+ ## 2.0.4
58
+
59
+ Bug Fix
60
+ * Remove PSGallery availability checks (#374)
61
+
57
62
## 2.0.3
58
63
59
64
Bug fixes and Improvements
Original file line number Diff line number Diff line change @@ -103,9 +103,6 @@ function Install-PackageManagement {
103
103
104
104
$FindModule_params = @ {
105
105
Name = $OneGetModuleName
106
- # Temporarily add RequiredVersion param until Package Management version greater than version 1.2.3 is released
107
- # Due to minor bug in Package Management causing PSGet test failures
108
- RequiredVersion = ' 1.2.2'
109
106
}
110
107
if ($PSVersionTable.PSVersion -eq ' 5.1.14394.1000' ) {
111
108
# Adding -MaximumVersion 1.1.7.0 as AppVeyor VM with WMF 5 is not installed with latest root CA certificates
@@ -122,9 +119,7 @@ function Install-PackageManagement {
122
119
$null = Microsoft.PowerShell.Management\New-Item - Path $TempModulePath - Force - ItemType Directory
123
120
$OneGetModuleName = ' PackageManagement'
124
121
try {
125
- # Temporarily add version flag until Package Management version greater than version 1.2.3 is released
126
- # Due to minor bug in Package Management causing PSGet test failures
127
- & $NugetExeFilePath install $OneGetModuleName - source https:// www.powershellgallery.com / api/ v2 - outputDirectory $TempModulePath - verbosity detailed - version 1.2 .2
122
+ & $NugetExeFilePath install $OneGetModuleName - source https:// www.powershellgallery.com / api/ v2 - outputDirectory $TempModulePath - verbosity detailed
128
123
$OneGetWithVersion = Microsoft.PowerShell.Management\Get-ChildItem - Path $TempModulePath - Directory
129
124
$OneGetVersion = ($OneGetWithVersion.Name.Split (' .' , 2 ))[1 ]
130
125
You can’t perform that action at this time.
0 commit comments