From 71d46b42e94e5905718b82163ad3422ad8a6bcf7 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 21 Oct 2022 23:23:13 +0200 Subject: [PATCH] Mention state migrations in readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa7962c3..172e6e7b 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,8 @@ Scroll down for more information on the underlying plugin framework. - Store additional non-parameter state for your plugin by adding any field that can be serialized with [Serde](https://serde.rs/) to your plugin's `Params` object and annotating them with `#[persist = "key"]`. + - Optional support for state migrations, for handling breaking changes in + plugin parameters. - Group your parameters into logical groups by nesting `Params` objects using the `#[nested(group = "...")]`attribute. - The `#[nested]` attribute also enables you to use multiple copies of the