From: Vladimír Čunát Date: Mon, 27 Apr 2020 16:17:14 +0000 (+0200) Subject: lib/module: bump KR_MODULE_API, reformulate NEWS X-Git-Tag: v5.1.0^2~2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=31683558551d9ecb5fc3e27263f2d497a9ec3d93;p=thirdparty%2Fknot-resolver.git lib/module: bump KR_MODULE_API, reformulate NEWS We had some minor API changes since the last release. Perhaps we haven't been bumping this often enough. --- diff --git a/NEWS b/NEWS index e89c5a25a..bc785df9e 100644 --- a/NEWS +++ b/NEWS @@ -30,8 +30,8 @@ Bugfixes Incompatible changes -------------------- -- see upgrading guide: https://knot-resolver.readthedocs.io/en/stable/upgrading.html -- minor changes in module API +- minor changes in module API; see upgrading guide: + https://knot-resolver.readthedocs.io/en/stable/upgrading.html Knot Resolver 5.0.1 (2020-02-05) diff --git a/lib/module.h b/lib/module.h index bc4efa5b8..660060dc0 100644 --- a/lib/module.h +++ b/lib/module.h @@ -23,7 +23,7 @@ struct kr_prop; */ #define KR_MODULE_EXPORT(module) \ KR_EXPORT uint32_t module ## _api() { return KR_MODULE_API; } -#define KR_MODULE_API ((uint32_t) 0x20190314) +#define KR_MODULE_API ((uint32_t) 0x20200427) typedef uint32_t (module_api_cb)(void);