xtask: Allow v1.2 spec links
This commit is contained in:
parent
c4bccfe17e
commit
40a96b93b1
@ -25,7 +25,9 @@ const SPLITS: &[(&str, VersionFn)] = &[
|
||||
("https://matrix.org/docs/spec/push_gateway/", |s| {
|
||||
s.starts_with("r0.1.1") || s.starts_with("unstable#")
|
||||
}),
|
||||
("https://spec.matrix.org/", |s| s.starts_with("v1.1") || s.starts_with("unstable")),
|
||||
("https://spec.matrix.org/", |s| {
|
||||
s.starts_with("v1.1") || s.starts_with("v1.2") || s.starts_with("unstable")
|
||||
}),
|
||||
];
|
||||
|
||||
pub(crate) fn check_spec_links(path: &Path) -> Result<()> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user