Quellcode durchsuchen

feat(quic): bump quicer to 0.0.106

William Yang vor 3 Jahren
Ursprung
Commit
38247a9d62
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 1 1
      apps/emqx/rebar.config.script
  2. 1 1
      mix.exs
  3. 1 1
      rebar.config.erl

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

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

+ 1 - 1
mix.exs

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

+ 1 - 1
rebar.config.erl

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