diff --git a/crates/extension_api/Cargo.toml b/crates/extension_api/Cargo.toml index cec7b5e7d9..9c5fdb3d0e 100644 --- a/crates/extension_api/Cargo.toml +++ b/crates/extension_api/Cargo.toml @@ -6,8 +6,7 @@ repository = "https://github.com/zed-industries/zed" documentation = "https://docs.rs/zed_extension_api" keywords = ["zed", "extension"] edition.workspace = true -# Change back to `true` when we're ready to publish v0.3.0. -publish = false +publish = true license = "Apache-2.0" [lints] diff --git a/crates/extension_api/README.md b/crates/extension_api/README.md index 54b66b2402..756bf0290f 100644 --- a/crates/extension_api/README.md +++ b/crates/extension_api/README.md @@ -23,7 +23,7 @@ need to set your `crate-type` accordingly: ```toml [dependencies] -zed_extension_api = "0.1.0" +zed_extension_api = "0.3.0" [lib] crate-type = ["cdylib"] @@ -63,6 +63,7 @@ Here is the compatibility of the `zed_extension_api` with versions of Zed: | Zed version | `zed_extension_api` version | | ----------- | --------------------------- | +| `0.178.x` | `0.0.1` - `0.3.0` | | `0.162.x` | `0.0.1` - `0.2.0` | | `0.149.x` | `0.0.1` - `0.1.0` | | `0.131.x` | `0.0.1` - `0.0.6` | diff --git a/crates/extension_host/src/wasm_host/wit.rs b/crates/extension_host/src/wasm_host/wit.rs index f9567526ed..0e5f9e2a1b 100644 --- a/crates/extension_host/src/wasm_host/wit.rs +++ b/crates/extension_host/src/wasm_host/wit.rs @@ -59,7 +59,7 @@ pub fn wasm_api_version_range(release_channel: ReleaseChannel) -> RangeInclusive let max_version = match release_channel { ReleaseChannel::Dev | ReleaseChannel::Nightly => latest::MAX_VERSION, - ReleaseChannel::Stable | ReleaseChannel::Preview => since_v0_2_0::MAX_VERSION, + ReleaseChannel::Stable | ReleaseChannel::Preview => latest::MAX_VERSION, }; since_v0_0_1::MIN_VERSION..=max_version diff --git a/crates/extension_host/src/wasm_host/wit/since_v0_2_0.rs b/crates/extension_host/src/wasm_host/wit/since_v0_2_0.rs index cc86ebaa2e..e9866aa447 100644 --- a/crates/extension_host/src/wasm_host/wit/since_v0_2_0.rs +++ b/crates/extension_host/src/wasm_host/wit/since_v0_2_0.rs @@ -8,7 +8,6 @@ use wasmtime::component::{Linker, Resource}; use super::latest; pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 2, 0); -pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 2, 0); wasmtime::component::bindgen!({ async: true,