diff --git a/CHANGELOG.md b/CHANGELOG.md index 64718e66..9a0e8df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Types of changes: - fix long duplicate title generation (#665, thanks to @skazi0) - maintenance (#663, #673, #678, #686, #688) + ## 4.0.2 - 2020-12-29 - fix actions popover (#653) diff --git a/tests/nextcloud-version.php b/tests/nextcloud-version.php index 86498ceb..c615e9dc 100644 --- a/tests/nextcloud-version.php +++ b/tests/nextcloud-version.php @@ -17,6 +17,9 @@ function getNCVersionFromComposer($path) { if (substr($v, 0, 1) == '^') { $v = substr($v, 1); } + if (substr($v, 0, 2) == '>=') { + $v = substr($v, 2); + } return $v; }