diff --git a/apps/emqx_authn/src/emqx_authn.app.src b/apps/emqx_authn/src/emqx_authn.app.src index d32b74e49..09ccfb358 100644 --- a/apps/emqx_authn/src/emqx_authn.app.src +++ b/apps/emqx_authn/src/emqx_authn.app.src @@ -1,7 +1,7 @@ %% -*- mode: erlang -*- {application, emqx_authn, [ {description, "EMQX Authentication"}, - {vsn, "0.1.0"}, + {vsn, "0.1.1"}, {modules, []}, {registered, [emqx_authn_sup, emqx_authn_registry]}, {applications, [kernel, stdlib, emqx_resource, ehttpc, epgsql, mysql, jose]}, diff --git a/apps/emqx_authn/src/emqx_authn.appup.src b/apps/emqx_authn/src/emqx_authn.appup.src new file mode 100644 index 000000000..54b81ffba --- /dev/null +++ b/apps/emqx_authn/src/emqx_authn.appup.src @@ -0,0 +1,8 @@ +%% Unless you know what you are doing, DO NOT edit manually!! +{VSN, + [{"0.1.0", + [{load_module,emqx_authz_utils,brutal_purge,soft_purge,[]}]}, + {<<".*">>,[]}], + [{"0.1.0", + [{load_module,emqx_authz_utils,brutal_purge,soft_purge,[]}]}, + {<<".*">>,[]}]}. diff --git a/apps/emqx_authz/src/emqx_authz.app.src b/apps/emqx_authz/src/emqx_authz.app.src index a8e781df9..d1d976959 100644 --- a/apps/emqx_authz/src/emqx_authz.app.src +++ b/apps/emqx_authz/src/emqx_authz.app.src @@ -1,7 +1,7 @@ %% -*- mode: erlang -*- {application, emqx_authz, [ {description, "An OTP application"}, - {vsn, "0.1.1"}, + {vsn, "0.1.2"}, {registered, []}, {mod, {emqx_authz_app, []}}, {applications, [ diff --git a/apps/emqx_authz/src/emqx_authz.appup.src b/apps/emqx_authz/src/emqx_authz.appup.src new file mode 100644 index 000000000..897c78c59 --- /dev/null +++ b/apps/emqx_authz/src/emqx_authz.appup.src @@ -0,0 +1,8 @@ +%% Unless you know what you are doing, DO NOT edit manually!! +{VSN, + [{"0.1.1", + [{load_module,emqx_authn_utils,brutal_purge,soft_purge,[]}]}, + {<<".*">>,[]}], + [{"0.1.1", + [{load_module,emqx_authn_utils,brutal_purge,soft_purge,[]}]}, + {<<".*">>,[]}]}.