We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8935459 commit ddb4af4Copy full SHA for ddb4af4
runtime/wasm/src/host.rs
@@ -148,9 +148,9 @@ impl RuntimeHost {
148
));
149
150
let api_version = Version::parse(&config.data_source.mapping.api_version)?;
151
- if !VersionReq::parse("<= 0.0.2").unwrap().matches(&api_version) {
+ if !VersionReq::parse("<= 0.0.3").unwrap().matches(&api_version) {
152
return Err(format_err!(
153
- "This Graph Node only supports mapping API versions <= 0.0.2, but subgraph `{}` uses `{}`",
+ "This Graph Node only supports mapping API versions <= 0.0.3, but subgraph `{}` uses `{}`",
154
config.subgraph_id,
155
api_version
156
0 commit comments