chore: bump version for emqx_proto

This commit is contained in:
Zaiming Shi 2021-11-05 13:13:04 +01:00
parent 325c5e5a97
commit 412a68ac75
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{application, emqx_exproto,
[{description, "EMQ X Extension for Protocol"},
{vsn, "4.3.3"}, %% strict semver
{vsn, "4.3.4"}, %% 4.3.3 is used by ee
{modules, []},
{registered, []},
{mod, {emqx_exproto_app, []}},

View File

@ -1,6 +1,7 @@
%% -*-: erlang -*-
{VSN,
[
{"4.3.3", []}, %% 4.3.3 is used by ee
{"4.3.2", [
{load_module, emqx_exproto_conn, brutal_purge, soft_purge, []},
{load_module, emqx_exproto_channel, brutal_purge, soft_purge, []}
@ -14,6 +15,7 @@
{<<".*">>, []}
],
[
{"4.3.3", []}, %% 4.3.3 is used by ee
{"4.3.2", [
{load_module, emqx_exproto_conn, brutal_purge, soft_purge, []},
{load_module, emqx_exproto_channel, brutal_purge, soft_purge, []}

View File

@ -158,7 +158,6 @@ init(ConnInfo = #{socktype := Socktype,
conn_state = connecting,
timers = #{}
},
%% Check license limitation
case emqx_hooks:run_fold('client.connect', [NConnInfo], #{}) of
{error, _Reason} ->
throw(nopermission);