Re: [PATCH] tcg plugins: expose an API version concept

2019-11-08 Thread Alex Bennée
Peter Maydell writes: > On Mon, 4 Nov 2019 at 13:18, Alex Bennée wrote: >> >> This is a very simple versioning API which allows the plugin >> infrastructure to check the API a plugin was built against. We also >> expose a min/cur API version to the plugin via the info block in case >> it wants

Re: [PATCH] tcg plugins: expose an API version concept

2019-11-08 Thread Peter Maydell
On Mon, 4 Nov 2019 at 13:18, Alex Bennée wrote: > > This is a very simple versioning API which allows the plugin > infrastructure to check the API a plugin was built against. We also > expose a min/cur API version to the plugin via the info block in case > it wants to avoid using old deprecated AP

Re: [PATCH] tcg plugins: expose an API version concept

2019-11-04 Thread Philippe Mathieu-Daudé
On 11/4/19 2:18 PM, Alex Bennée wrote: This is a very simple versioning API which allows the plugin infrastructure to check the API a plugin was built against. We also expose a min/cur API version to the plugin via the info block in case it wants to avoid using old deprecated APIs in the future.

[PATCH] tcg plugins: expose an API version concept

2019-11-04 Thread Alex Bennée
This is a very simple versioning API which allows the plugin infrastructure to check the API a plugin was built against. We also expose a min/cur API version to the plugin via the info block in case it wants to avoid using old deprecated APIs in the future. Signed-off-by: Alex Bennée --- include