scripts: Update list-deprecations script to use new release tags

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-03-01 09:44:46 +01:00
parent 6fa174810f
commit 5f48904969
+1 -3
View File
@@ -57,9 +57,7 @@ class ReleaseProvider {
);
// Filter out just the releases
const releases = tagOutput
.split('\n')
.filter(l => l.startsWith('release-'));
const releases = tagOutput.split('\n').filter(l => l.startsWith('v'));
// Then find the earliest release that affected our package
for (const release of releases) {