From 134decb75ee23520cfca9043a0a9fbfbc9f8513a Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Mon, 8 Apr 2024 11:15:35 -0400 Subject: [PATCH] Add compatibility table between Zed and `zed_extension_api` versions (#10279) This PR updates the README of the `zed_extension_api` crate to show the compatibility between different versions of `zed_extension_api` and Zed. Release Notes: - N/A --- crates/extension_api/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/crates/extension_api/README.md b/crates/extension_api/README.md index eb3741478e..1f91dbe547 100644 --- a/crates/extension_api/README.md +++ b/crates/extension_api/README.md @@ -54,3 +54,16 @@ To run your extension in Zed as you're developing it: - Open the extensions view using the `zed: extensions` action in the command palette. - Click the `Install Dev Extension` button in the top right - Choose the path to your extension directory. + +## Compatible Zed versions + +Extensions created using newer versions of the Zed extension API won't be compatible with older versions of Zed. + +Here is the compatibility of the `zed_extension_api` with versions of Zed: + +| Zed version | `zed_extension_api` version | +| ----------- | --------------------------- | +| `0.131.x` | `0.0.1` - `0.0.6` | +| `0.130.x` | `0.0.1` - `0.0.5` | +| `0.129.x` | `0.0.1` - `0.0.4` | +| `0.128.x` | `0.0.1` |