Skip to content

Commit

Permalink
PrtgAPI 0.9.19
Browse files Browse the repository at this point in the history
  • Loading branch information
lordmilko committed Sep 14, 2023
1 parent 7fa2398 commit 18734e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build/CI/Appveyor/Set-AppveyorVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function Get-LastAppveyorNuGetVersion
{
$deployments = Get-AppveyorDeployment

$lastNuGet = $deployments|Sort-Object datetime -Descending|where Name -eq "NuGet"|select -first 1
$lastNuGet = $deployments|Sort-Object datetime -Descending|where { $_.Name -eq "NuGet" -and $_.Version -notlike "*preview*" }|select -first 1

return $lastNuGet.Version
}
Expand Down
6 changes: 3 additions & 3 deletions build/Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<Project>
<PropertyGroup>
<Version>0.9.18</Version>
<Version>0.9.19</Version>
<AssemblyVersion>0.9.0.0</AssemblyVersion>
<FileVersion>0.9.18.0</FileVersion>
<InformationalVersion>0.9.18</InformationalVersion>
<FileVersion>0.9.19.0</FileVersion>
<InformationalVersion>0.9.19</InformationalVersion>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions src/PrtgAPI.PowerShell/PowerShell/Resources/PrtgAPI.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PrtgAPI.PowerShell.dll'

# Version number of this module.
ModuleVersion = '0.9.18'
ModuleVersion = '0.9.19'

# Supported PSEditions
CompatiblePSEditions = @('Desktop', 'Core')
Expand Down Expand Up @@ -107,7 +107,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'Release Notes: https://github.com/lordmilko/PrtgAPI/releases/tag/v0.9.18
ReleaseNotes = 'Release Notes: https://github.com/lordmilko/PrtgAPI/releases/tag/v0.9.19
---
Expand Down
4 changes: 2 additions & 2 deletions src/PrtgAPI/Properties/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
using System.Reflection;

[assembly: AssemblyVersion("0.9.0.0")]
[assembly: AssemblyFileVersion("0.9.18.0")]
[assembly: AssemblyInformationalVersion("0.9.18")]
[assembly: AssemblyFileVersion("0.9.19.0")]
[assembly: AssemblyInformationalVersion("0.9.19")]

0 comments on commit 18734e0

Please sign in to comment.