From 7d9bd33de9a3452868f7281e33b2c97d64504b9f Mon Sep 17 00:00:00 2001 From: William Yang Date: Wed, 7 Dec 2022 13:54:07 +0100 Subject: [PATCH] feat(quic): bump quicer version to 0.0.100 --- apps/emqx/rebar.config.script | 2 +- mix.exs | 2 +- rebar.config.erl | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/emqx/rebar.config.script b/apps/emqx/rebar.config.script index 0ecd21715..3ac2b8758 100644 --- a/apps/emqx/rebar.config.script +++ b/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/qzhuyan/quic.git", {branch, "dev/william/multi-streams"}}}. %% @TODO revert +Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.100"}}}. ExtraDeps = fun(C) -> {deps, Deps0} = lists:keyfind(deps, 1, C), diff --git a/mix.exs b/mix.exs index a2df76701..ce798997b 100644 --- a/mix.exs +++ b/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.16", override: true}], + do: [{:quicer, github: "emqx/quic", tag: "0.0.100", override: true}], else: [] end diff --git a/rebar.config.erl b/rebar.config.erl index 9da71355b..1d342b403 100644 --- a/rebar.config.erl +++ b/rebar.config.erl @@ -39,8 +39,7 @@ bcrypt() -> {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}}. quicer() -> - %% @TODO revert - {quicer, {git, "https://github.com/qzhuyan/quic.git", {branch, "dev/william/multi-streams"}}}. + {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.100"}}}. jq() -> {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.9"}}}.