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:
Marshall Bowers 2024-08-13 10:40:29 -04:00 committed by GitHub
parent 4450ebff6b
commit 82529499df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,