Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit 23797a9

Browse files
authored
Update module version and changelog (#477)
1 parent c3e0d7d commit 23797a9

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
# Changelog
22

3-
## Unreleased
3+
## 2.1.3
44

5-
Bug Fixes
5+
New Features
6+
7+
- Added -Scope parameter to Update-Module (Thanks @lwajswaj!) (#471)
8+
- Added -Exclude parameter to Publish-Module (Thanks @Benny1007!) (#191)
9+
- Added -SkipAutomticTags parameter to Publish-Module (Thanks @awickham10!) (#452)
10+
11+
Bug Fix
612

7-
- A few of localization strings for the DSC resource PSModule was revised
8-
to be more descriptive and fixed typos. One localization string was
9-
removed as it was not used.
13+
- Fixed issue with finding modules using macOS and .NET Core 3.0
1014

1115
## 2.1.2
1216

1317
New Feature
1418

15-
- Added support for registering repositories with special characters
19+
- Added support for registering repositories with special characters (@Thanks jborean93!) (#442)
1620

1721
## 2.1.1
1822

src/PowerShellGet/PowerShellGet.psd1

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'PSModule.psm1'
3-
ModuleVersion = '2.1.2'
3+
ModuleVersion = '2.1.3'
44
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
55
Author = 'Microsoft Corporation'
66
CompanyName = 'Microsoft Corporation'
@@ -40,7 +40,7 @@
4040
FileList = @('PSModule.psm1',
4141
'PSGet.Format.ps1xml',
4242
'PSGet.Resource.psd1')
43-
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.1.7.0'})
43+
RequiredModules = @(@{ModuleName = 'PackageManagement'; ModuleVersion = '1.1.7.0' })
4444
PrivateData = @{
4545
"PackageManagementProviders" = 'PSModule.psm1'
4646
"SupportedPowerShellGetFormatVersions" = @('1.x', '2.x')
@@ -54,6 +54,17 @@
5454
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
5555
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
5656
ReleaseNotes = @'
57+
## 2.1.3
58+
New Features
59+
60+
- Added -Scope parameter to Update-Module (Thanks @lwajswaj!) (#471)
61+
- Added -Exclude parameter to Publish-Module (Thanks @Benny1007!) (#191)
62+
- Added -SkipAutomticTags parameter to Publish-Module (Thanks @awickham10!) (#452)
63+
64+
Bug Fix
65+
66+
- Fixed issue with finding modules using macOS and .NET Core 3.0
67+
5768
## 2.1.2
5869
5970
New Feature

0 commit comments

Comments
 (0)