Skip to content

Commit ddb4af4

Browse files
committed
runtime/wasm: Bump maximum supported mapping apiVersion to 0.0.3
1 parent 8935459 commit ddb4af4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/wasm/src/host.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ impl RuntimeHost {
148148
));
149149

150150
let api_version = Version::parse(&config.data_source.mapping.api_version)?;
151-
if !VersionReq::parse("<= 0.0.2").unwrap().matches(&api_version) {
151+
if !VersionReq::parse("<= 0.0.3").unwrap().matches(&api_version) {
152152
return Err(format_err!(
153-
"This Graph Node only supports mapping API versions <= 0.0.2, but subgraph `{}` uses `{}`",
153+
"This Graph Node only supports mapping API versions <= 0.0.3, but subgraph `{}` uses `{}`",
154154
config.subgraph_id,
155155
api_version
156156
));

0 commit comments

Comments
 (0)