Skip to content

Commit 8c10b25

Browse files
committed
Update changelog, version, releasenotes
1 parent d64b5fa commit 8c10b25

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
# CHANGELOG
2+
## 1.0.2
3+
4+
### Bug Fixes
5+
- Bug fix for `Update-PSResource` not updating from correct repository (#1549)
6+
- Bug fix for creating temp home directory on Unix (#1544)
7+
- Bug fix for creating `InstalledScriptInfos` directory when it does not exist (#1542)
8+
- Bug fix for `Update-ModuleManifest` throwing null pointer exception (#1538)
9+
- Bug fix for `name` property not populating in `PSResourceInfo` object when using `Find-PSResource` with JFrog Artifactory (#1535)
10+
- Bug fix for incorrect configuration of requests to JFrog Artifactory v2 endpoints (#1533 Thanks @sean-r-williams!)
11+
- Bug fix for determining JFrog Artifactory repositories (#1532 Thanks @sean-r-williams!)
12+
- Bug fix for v2 server repositories incorrectly adding script endpoint (1526)
13+
- Bug fixes for null references (#1525)
14+
- Typo fixes in message prompts in `Install-PSResource` (#1510 Thanks @NextGData!)
15+
- Bug fix to add `NormalizedVersion` property to `AdditionalMetadata` only when it exists (#1503 Thanks @sean-r-williams!)
16+
- Bug fix to verify whether `Uri` is a UNC path and set respective `ApiVersion` (#1479 Thanks @kborowinski!)
17+
218
## 1.0.1
319

420
### Bug Fixes

src/Microsoft.PowerShell.PSResourceGet.psd1

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@{
55
RootModule = './Microsoft.PowerShell.PSResourceGet.dll'
66
NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1')
7-
ModuleVersion = '1.0.1'
7+
ModuleVersion = '1.0.2'
88
CompatiblePSEditions = @('Core', 'Desktop')
99
GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643'
1010
Author = 'Microsoft Corporation'
@@ -55,6 +55,22 @@
5555
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
5656
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
5757
ReleaseNotes = @'
58+
## 1.0.2
59+
60+
### Bug Fixes
61+
- Bug fix for `Update-PSResource` not updating from correct repository (#1549)
62+
- Bug fix for creating temp home directory on Unix (#1544)
63+
- Bug fix for creating `InstalledScriptInfos` directory when it does not exist (#1542)
64+
- Bug fix for `Update-ModuleManifest` throwing null pointer exception (#1538)
65+
- Bug fix for `name` property not populating in `PSResourceInfo` object when using `Find-PSResource` with JFrog Artifactory (#1535)
66+
- Bug fix for incorrect configuration of requests to JFrog Artifactory v2 endpoints (#1533 Thanks @sean-r-williams!)
67+
- Bug fix for determining JFrog Artifactory repositories (#1532 Thanks @sean-r-williams!)
68+
- Bug fix for v2 server repositories incorrectly adding script endpoint (1526)
69+
- Bug fixes for null references (#1525)
70+
- Typo fixes in message prompts in `Install-PSResource` (#1510 Thanks @NextGData!)
71+
- Bug fix to add `NormalizedVersion` property to `AdditionalMetadata` only when it exists (#1503 Thanks @sean-r-williams!)
72+
- Bug fix to verify whether `Uri` is a UNC path and set respective `ApiVersion` (#1479 Thanks @kborowinski!)
73+
5874
## 1.0.1
5975
6076
### Bug Fixes

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<OutputType>Library</OutputType>
66
<RootNamespace>Microsoft.PowerShell.PSResourceGet</RootNamespace>
77
<AssemblyName>Microsoft.PowerShell.PSResourceGet</AssemblyName>
8-
<AssemblyVersion>1.0.1.0</AssemblyVersion>
9-
<FileVersion>1.0.1</FileVersion>
10-
<InformationalVersion>1.0.1</InformationalVersion>
8+
<AssemblyVersion>1.0.2.0</AssemblyVersion>
9+
<FileVersion>1.0.2</FileVersion>
10+
<InformationalVersion>1.0.2</InformationalVersion>
1111
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
1212
<LangVersion>9.0</LangVersion>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

0 commit comments

Comments
 (0)