Skip to content

Commit 7725e14

Browse files
authored
Update module version to use new form (#439)
* Update version to new form * Add missing copyright header
1 parent 65f97f6 commit 7725e14

File tree

3 files changed

+49
-18
lines changed

3 files changed

+49
-18
lines changed

CHANGELOG.md

Lines changed: 37 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
1-
### 3.0.0-beta10
2-
# Changelog
1+
# CHANGELOG
2+
3+
## 3.0.11-beta
4+
5+
### Fixes
6+
7+
### Changes
8+
9+
### New Features
10+
11+
- Find-PSResource
12+
- Get-InstalledPSResource
13+
- Get-PSResourceRepository
14+
- Install-PSResource
15+
- Publish-PSResource
16+
- Register-PSResourceRepository
17+
- Save-PSResource
18+
- Set-PSResourceRepository
19+
- Uninstall-PSResource
20+
- Unregister-PSResourceRepository
21+
- Update-PSResource
22+
23+
### Notes
24+
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
25+
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
26+
All tests have been reviewed and rewritten as needed.
27+
28+
## 3.0.0-beta10
329
Bug Fixes
430
* Bug fix for -ModuleName (used with -Version) in Find-PSResource returning incorrect resource type
531
* Make repositories unique by name
@@ -10,8 +36,7 @@ Bug Fixes
1036
* Ensure that not passing credentials does not throw an error if searching through multiple repositories
1137
* Remove attempt to remove loaded assemblies in psm1
1238

13-
### 3.0.0-beta9
14-
# Changelog
39+
## 3.0.0-beta9
1540
New Features
1641
* Add DSCResources
1742

@@ -23,7 +48,7 @@ Bug Fixes
2348
* Add debugging statements for Get-PSResource and Install-PSResource
2449
* Fix bug related to paths in Uninstall-PSResource
2550

26-
### 3.0.0-beta8
51+
## 3.0.0-beta8
2752
New Features
2853
* Add Type parameter to Install-PSResource
2954
* Add 'sudo' check for admin privileges in Unix in Install-PSResource
@@ -34,7 +59,7 @@ Bug Fixes
3459
* Fix bug with Uninstall-PSResource sometimes not fully uninstalling
3560
* Change installed file paths to contain original version number instead of normalized version
3661

37-
### 3.0.0-beta7
62+
## 3.0.0-beta7
3863
New Features
3964
* Completed functionality for Update-PSResource
4065
* Input-Object parameter for Install-PSResource
@@ -48,21 +73,21 @@ Bug Fixes
4873
* Fix error getting thrown from paths with incorrectly formatted module versions
4974
* Fix module installation paths on Linux and MacOS
5075

51-
### 3.0.0-beta6
76+
## 3.0.0-beta6
5277
New Feature
5378
* Implement functionality for Publish-PSResource
5479

55-
### 3.0.0-beta5
80+
## 3.0.0-beta5
5681
* Note: 3.0.0-beta5 was skipped due to a packaging error
5782

58-
### 3.0.0-beta4
83+
## 3.0.0-beta4
5984
New Feature
6085
* Implement -Repository '*' in Find-PSResource to search through all repositories instead of prioritized repository
6186

6287
Bug Fix
6388
* Fix poor error handling for when repository is not accessible in Find-PSResource
6489

65-
### 3.0.0-beta3
90+
## 3.0.0-beta3
6691
New Features
6792
* -RequiredResource parameter for Install-PSResource
6893
* -RequiredResourceFile parameter for Install-PSResource
@@ -72,7 +97,7 @@ Bug Fixes
7297
* Resolved paths in Install-PSRsource and Save-PSResource
7398
* Resolved issues with capitalization (for unix systems) in Install-PSResource and Save-PSResource
7499

75-
### 3.0.0-beta2
100+
## 3.0.0-beta2
76101
New Features
77102
* Progress bar and -Quiet parameter for Install-PSResource
78103
* -TrustRepository parameter for Install-PSResource
@@ -82,6 +107,6 @@ New Features
82107
* -Reinstall parameter for Install-PSResource
83108
* Improved error handling
84109

85-
### 3.0.0-beta1
110+
## 3.0.0-beta1
86111
BREAKING CHANGE
87112
* Preview version of PowerShellGet. Many features are not fully implemented yet. Please see https://devblogs.microsoft.com/powershell/powershellget-3-0-preview1 for more details.

src/PowerShellGet.psd1

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
14
@{
25
RootModule = './netstandard2.0/PowerShellGet.dll'
3-
ModuleVersion = '3.0.0'
6+
ModuleVersion = '3.0.11'
47
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
58
Author = 'Microsoft Corporation'
69
CompanyName = 'Microsoft Corporation'
@@ -27,7 +30,7 @@
2730
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
2831
PrivateData = @{
2932
PSData = @{
30-
Prerelease = 'beta11'
33+
Prerelease = 'beta'
3134
Tags = @('PackageManagement',
3235
'PSEdition_Desktop',
3336
'PSEdition_Core',
@@ -37,7 +40,10 @@
3740
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
3841
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
3942
ReleaseNotes = @'
40-
### 3.0.0-beta11
43+
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
44+
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
45+
All tests have been reviewed and rewritten as needed.
46+
### 3.0.11
4147
'@
4248
}
4349
}

src/code/PowerShellGet.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>PowerShellGet</RootNamespace>
77
<AssemblyName>PowerShellGet</AssemblyName>
8-
<AssemblyVersion>3.0.0.0</AssemblyVersion>
9-
<FileVersion>3.0.0</FileVersion>
10-
<InformationalVersion>3.0.0</InformationalVersion>
8+
<AssemblyVersion>3.0.11.0</AssemblyVersion>
9+
<FileVersion>3.0.11</FileVersion>
10+
<InformationalVersion>3.0.11</InformationalVersion>
1111
<TargetFrameworks>netstandard2.0</TargetFrameworks>
1212
<LangVersion>8.0</LangVersion>
1313
</PropertyGroup>

0 commit comments

Comments
 (0)