Fix min and max versions for v0.1.0 of the extension API (#16163)
Missed this in #16158. Release Notes: - N/A
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user