Skip to content

Update module version to use new form #439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 37 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
### 3.0.0-beta10
# Changelog
# CHANGELOG

## 3.0.11-beta

### Fixes

### Changes

### New Features

- Find-PSResource
- Get-InstalledPSResource
- Get-PSResourceRepository
- Install-PSResource
- Publish-PSResource
- Register-PSResourceRepository
- Save-PSResource
- Set-PSResourceRepository
- Uninstall-PSResource
- Unregister-PSResourceRepository
- Update-PSResource

### Notes
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
All tests have been reviewed and rewritten as needed.

## 3.0.0-beta10
Bug Fixes
* Bug fix for -ModuleName (used with -Version) in Find-PSResource returning incorrect resource type
* Make repositories unique by name
Expand All @@ -10,8 +36,7 @@ Bug Fixes
* Ensure that not passing credentials does not throw an error if searching through multiple repositories
* Remove attempt to remove loaded assemblies in psm1

### 3.0.0-beta9
# Changelog
## 3.0.0-beta9
New Features
* Add DSCResources

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

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

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

### 3.0.0-beta6
## 3.0.0-beta6
New Feature
* Implement functionality for Publish-PSResource

### 3.0.0-beta5
## 3.0.0-beta5
* Note: 3.0.0-beta5 was skipped due to a packaging error

### 3.0.0-beta4
## 3.0.0-beta4
New Feature
* Implement -Repository '*' in Find-PSResource to search through all repositories instead of prioritized repository

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

### 3.0.0-beta3
## 3.0.0-beta3
New Features
* -RequiredResource parameter for Install-PSResource
* -RequiredResourceFile parameter for Install-PSResource
Expand All @@ -72,7 +97,7 @@ Bug Fixes
* Resolved paths in Install-PSRsource and Save-PSResource
* Resolved issues with capitalization (for unix systems) in Install-PSResource and Save-PSResource

### 3.0.0-beta2
## 3.0.0-beta2
New Features
* Progress bar and -Quiet parameter for Install-PSResource
* -TrustRepository parameter for Install-PSResource
Expand All @@ -82,6 +107,6 @@ New Features
* -Reinstall parameter for Install-PSResource
* Improved error handling

### 3.0.0-beta1
## 3.0.0-beta1
BREAKING CHANGE
* 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.
12 changes: 9 additions & 3 deletions src/PowerShellGet.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

@{
RootModule = './netstandard2.0/PowerShellGet.dll'
ModuleVersion = '3.0.0'
ModuleVersion = '3.0.11'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Expand All @@ -27,7 +30,7 @@
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
Prerelease = 'beta11'
Prerelease = 'beta'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
Expand All @@ -37,7 +40,10 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
### 3.0.0-beta11
In this release, all cmdlets have been reviewed and implementation code refactored as needed.
Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases.
All tests have been reviewed and rewritten as needed.
### 3.0.11
'@
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/code/PowerShellGet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<OutputType>Library</OutputType>
<RootNamespace>PowerShellGet</RootNamespace>
<AssemblyName>PowerShellGet</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<InformationalVersion>3.0.0</InformationalVersion>
<AssemblyVersion>3.0.11.0</AssemblyVersion>
<FileVersion>3.0.11</FileVersion>
<InformationalVersion>3.0.11</InformationalVersion>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
Expand Down