Просмотр исходного кода

chore: bump emqtt 1.7.1-pre2 & quicer 0.0.108

William Yang 3 лет назад
Родитель
Сommit
c7efccb996
4 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      apps/emqx/rebar.config
  2. 1 1
      apps/emqx/rebar.config.script
  3. 1 1
      mix.exs
  4. 1 1
      rebar.config.erl

+ 1 - 1
apps/emqx/rebar.config

@@ -43,7 +43,7 @@
             {meck, "0.9.2"},
             {proper, "1.4.0"},
             {bbmustache, "1.10.0"},
-            {emqtt, {git, "https://github.com/qzhuyan/emqtt", {tag, "1.7.1-pre"}}} %% @TODO revert
+            {emqtt, {git, "https://github.com/qzhuyan/emqtt", {tag, "1.7.1-pre2"}}} %% @TODO revert
         ]},
         {extra_src_dirs, [{"test", [recursive]}]}
     ]}

+ 1 - 1
apps/emqx/rebar.config.script

@@ -24,7 +24,7 @@ IsQuicSupp = fun() ->
 end,
 
 Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}},
-Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.107"}}}.
+Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.108"}}}.
 
 Dialyzer = fun(Config) ->
                    {dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),

+ 1 - 1
mix.exs

@@ -645,7 +645,7 @@ defmodule EMQXUmbrella.MixProject do
   defp quicer_dep() do
     if enable_quicer?(),
       # in conflict with emqx and emqtt
-      do: [{:quicer, github: "emqx/quic", tag: "0.0.107", override: true}],
+      do: [{:quicer, github: "emqx/quic", tag: "0.0.108", override: true}],
       else: []
   end
 

+ 1 - 1
rebar.config.erl

@@ -39,7 +39,7 @@ bcrypt() ->
     {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}}.
 
 quicer() ->
-    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.107"}}}.
+    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.108"}}}.
 
 jq() ->
     {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.9"}}}.