Skip to content

Update version, changelog, and release notes for 3.0.14-beta14 #663

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 1 commit into from
May 26, 2022
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
2 changes: 1 addition & 1 deletion .ci/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ stages:
BuildDropPath: $(signOutPath)
Build_Repository_Uri: 'https://github.com/powershell/powershellget'
PackageName: 'PowerShellGet'
PackageVersion: '3.0.13'
PackageVersion: '3.0.14'

- pwsh: |
$modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 3.0.14-beta14

### Bug Fixes
- Bug fix for repository store (#661)

## 3.0.13-beta

### New Features
Expand Down
7 changes: 6 additions & 1 deletion src/PowerShellGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
RootModule = './netstandard2.0/PowerShellGet.dll'
ModuleVersion = '3.0.13'
ModuleVersion = '3.0.14'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Expand Down Expand Up @@ -40,6 +40,11 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
## 3.0.14-beta14

### Bug Fixes
- Bug fix for repository store (#661)

## 3.0.13-beta

### New Features
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.13.0</AssemblyVersion>
<FileVersion>3.0.13</FileVersion>
<InformationalVersion>3.0.13</InformationalVersion>
<AssemblyVersion>3.0.14.0</AssemblyVersion>
<FileVersion>3.0.14</FileVersion>
<InformationalVersion>3.0.14</InformationalVersion>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
Expand Down