Skip to content

Commit de75e2d

Browse files
authored
extension_host: Expand supported extension API range to include v0.7.0 (#38529)
This PR updates the version range for v0.6.0 of the extension API to include v0.7.0. Since we bumped the `zed_extension_api` crate's version to v0.7.0, we need to expand this range in order for Zed clients to be able to install extensions built against v0.7.0 of `zed_extension_api`. Currently no extensions that target `[email protected]` can be installed. Release Notes: - N/A
1 parent 4e316c6 commit de75e2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/extension_host/src/wasm_host/wit/since_v0_6_0.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ use util::{archive::extract_zip, fs::make_file_executable, maybe};
3535
use wasmtime::component::{Linker, Resource};
3636

3737
pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 6, 0);
38-
pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 6, 0);
38+
pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 7, 0);
3939

4040
wasmtime::component::bindgen!({
4141
async: true,

0 commit comments

Comments
 (0)