From 3375ee093139214bc9c43370dfb5479b82e4b7fa Mon Sep 17 00:00:00 2001 From: Garrett Fields Date: Tue, 5 Jan 2021 18:41:46 -0500 Subject: [PATCH] Statically add ZOL 0.6.5.11 to the feature matrix (#101) This resolves #83. While 0.6.5.11 is old, it still had feature flags. Since the 0.6.x branch will not receive further minor releases, this static change should be stable. Signed-off-by: Garrett Fields --- scripts/compatibility_matrix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/compatibility_matrix.py b/scripts/compatibility_matrix.py index 611e9e4..364a555 100755 --- a/scripts/compatibility_matrix.py +++ b/scripts/compatibility_matrix.py @@ -32,6 +32,7 @@ def openzfs(): with urlopen('https://zfsonlinux.org') as web: versions = findall(r'download/zfs-([0-9.]+)', web.read().decode('utf-8', 'ignore')) + versions.append("0.6.5.11") for ver in set(versions): sources[ver] = ('https://raw.githubusercontent.com/openzfs/zfs/' 'zfs-{}/man/man5/zpool-features.5'.format(ver))