Fix min and max versions for v0.1.0 of the extension API (#16163)

Marshall Bowers created

Missed this in #16158.

Release Notes:

- N/A

Change summary

crates/extension/src/wasm_host/wit/since_v0_1_0.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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,