zed_extension_api: Release v0.6.0 (#32945)
This PR releases v0.6.0 of the Zed extension API. Support for this version of the extension API will land in Zed v0.192.x. Release Notes: - N/A
This commit is contained in:
parent
8e4031815d
commit
3e8a07f496
4 changed files with 3 additions and 6 deletions
|
@ -6,8 +6,7 @@ repository = "https://github.com/zed-industries/zed"
|
||||||
documentation = "https://docs.rs/zed_extension_api"
|
documentation = "https://docs.rs/zed_extension_api"
|
||||||
keywords = ["zed", "extension"]
|
keywords = ["zed", "extension"]
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
# Change back to `true` when we're ready to publish v0.6.0.
|
publish = true
|
||||||
publish = false
|
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
|
|
|
@ -65,6 +65,7 @@ Here is the compatibility of the `zed_extension_api` with versions of Zed:
|
||||||
|
|
||||||
| Zed version | `zed_extension_api` version |
|
| Zed version | `zed_extension_api` version |
|
||||||
| ----------- | --------------------------- |
|
| ----------- | --------------------------- |
|
||||||
|
| `0.192.x` | `0.0.1` - `0.6.0` |
|
||||||
| `0.186.x` | `0.0.1` - `0.5.0` |
|
| `0.186.x` | `0.0.1` - `0.5.0` |
|
||||||
| `0.184.x` | `0.0.1` - `0.4.0` |
|
| `0.184.x` | `0.0.1` - `0.4.0` |
|
||||||
| `0.178.x` | `0.0.1` - `0.3.0` |
|
| `0.178.x` | `0.0.1` - `0.3.0` |
|
||||||
|
|
|
@ -69,7 +69,7 @@ pub fn wasm_api_version_range(release_channel: ReleaseChannel) -> RangeInclusive
|
||||||
|
|
||||||
let max_version = match release_channel {
|
let max_version = match release_channel {
|
||||||
ReleaseChannel::Dev | ReleaseChannel::Nightly => latest::MAX_VERSION,
|
ReleaseChannel::Dev | ReleaseChannel::Nightly => latest::MAX_VERSION,
|
||||||
ReleaseChannel::Stable | ReleaseChannel::Preview => since_v0_5_0::MAX_VERSION,
|
ReleaseChannel::Stable | ReleaseChannel::Preview => latest::MAX_VERSION,
|
||||||
};
|
};
|
||||||
|
|
||||||
since_v0_0_1::MIN_VERSION..=max_version
|
since_v0_0_1::MIN_VERSION..=max_version
|
||||||
|
@ -121,8 +121,6 @@ impl Extension {
|
||||||
let _ = release_channel;
|
let _ = release_channel;
|
||||||
|
|
||||||
if version >= latest::MIN_VERSION {
|
if version >= latest::MIN_VERSION {
|
||||||
authorize_access_to_unreleased_wasm_api_version(release_channel)?;
|
|
||||||
|
|
||||||
let extension =
|
let extension =
|
||||||
latest::Extension::instantiate_async(store, component, latest::linker(executor))
|
latest::Extension::instantiate_async(store, component, latest::linker(executor))
|
||||||
.await
|
.await
|
||||||
|
|
|
@ -9,7 +9,6 @@ use wasmtime::component::{Linker, Resource};
|
||||||
use super::latest;
|
use super::latest;
|
||||||
|
|
||||||
pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 5, 0);
|
pub const MIN_VERSION: SemanticVersion = SemanticVersion::new(0, 5, 0);
|
||||||
pub const MAX_VERSION: SemanticVersion = SemanticVersion::new(0, 5, 0);
|
|
||||||
|
|
||||||
wasmtime::component::bindgen!({
|
wasmtime::component::bindgen!({
|
||||||
async: true,
|
async: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue