Skip to content

Commit

Permalink
Updated warnings about minimum Shlink version to suggest 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codaamok committed Nov 21, 2021
1 parent 52f966e commit e49cd3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `Save-ShlinkUrlQrCode` no longer has hardcoded default parameter values (much like the API did) for size, margin, format, and error correction level.. Shlink 2.9.0 now lets you configure these defaults for QR codes, so by omitting values for these params, your server default values are used.

### Fixed
- Updated warnings about minimum Shlink version to suggest 2.9.0
- Corrected object reference to API URL attempted in ErrorRecord

## [0.7.0] - 2021-08-09
Expand Down
2 changes: 1 addition & 1 deletion PSShlink/Private/GetShlinkConnection.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function GetShlinkConnection {
}
}

$Script:MinSupportedShlinkVersion = [Version]"2.8.0"
$Script:MinSupportedShlinkVersion = [Version]"2.9.0"

if (-not ("System.Web.HttpUtility" -as [Type])) {
Add-Type -AssemblyName "System.Web" -ErrorAction "Stop"
Expand Down

0 comments on commit e49cd3b

Please sign in to comment.