fix publish

This commit is contained in:
korelstar 2021-03-02 23:18:35 +01:00
parent c0ba42b521
commit 6c6d0cca10
2 changed files with 4 additions and 0 deletions

View File

@ -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)

View File

@ -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;
}