From 78c456afd9f6f8294dfabf83c7fd1f908aa702ad Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 9 May 2022 13:42:59 -0400 Subject: [PATCH] Add clarification to the engines.lens string format Signed-off-by: Sebastian Malton --- docs/extensions/get-started/anatomy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensions/get-started/anatomy.md b/docs/extensions/get-started/anatomy.md index 60a38b05a2..9ec18a757e 100644 --- a/docs/extensions/get-started/anatomy.md +++ b/docs/extensions/get-started/anatomy.md @@ -42,7 +42,7 @@ Some of the most-important fields include: Lens uses this ID to uniquely identify your extension. - `main`: the extension's entry point run in `main` process. - `renderer`: the extension's entry point run in `renderer` process. -- `engines.lens`: the minimum version of Lens API that the extension depends upon. +- `engines.lens`: the minimum version of Lens API that the extension depends upon. We only support the `~` range, which is also optional to specify, and only major and minor version numbers. Meaning that `~5.4` and `5.4` both mean the same thing, and the patch version in `5.4.2` is ignored. ```javascript {