Skip to content

Commit

Permalink
Added breaking changes message for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jkdba committed Mar 11, 2019
1 parent b5b31ef commit 6d97267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PoShKeePass.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if (-not(Test-Path -Path $Global:KeePassConfigurationFile))

$previousVersion = [int]($Versions[1] -replace '\.')
$CurrentVersion = $Versions[0]
if($previousVersion -lt 2118)
if($previousVersion -lt 2124)
{
Write-Warning -Message ('**BREAKING CHANGES:** This new version of the module {0} contains BREAKING CHANGES, please review the changelog or readme for details!' -f $CurrentVersion)
}
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ if (-not(Test-Path -Path $Global:KeePassConfigurationFile))
$previousVersion = [int]($Versions[1] -replace '\.')
$CurrentVersion = $Versions[0]
if($previousVersion -lt 2118)
if($previousVersion -lt 2124)
{
Write-Warning -Message ('**BREAKING CHANGES:** This new version of the module {0} contains BREAKING CHANGES, please review the changelog or readme for details!' -f $CurrentVersion)
}
Expand Down

0 comments on commit 6d97267

Please sign in to comment.