From 82529499df9d67cffdd4c39442024dc816d75925 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 13 Aug 2024 10:40:29 -0400 Subject: [PATCH] Fix min and max versions for v0.1.0 of the extension API (#16163) Missed this in #16158. Release Notes: - N/A --- crates/extension/src/wasm_host/wit/since_v0_1_0.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/extension/src/wasm_host/wit/since_v0_1_0.rs b/crates/extension/src/wasm_host/wit/since_v0_1_0.rs index 694e2f227d..dc38370d9d 100644 --- a/crates/extension/src/wasm_host/wit/since_v0_1_0.rs +++ b/crates/extension/src/wasm_host/wit/since_v0_1_0.rs @@ -22,8 +22,8 @@ use std::{ use util::maybe; use wasmtime::component::{Linker, Resource}; -pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 0, 7); -pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 0, 7); +pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 1, 0); +pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 1, 0); wasmtime::component::bindgen!({ async: true,