From 31cfd728c4bf483d7d099e6e05f6ecf4311b50be Mon Sep 17 00:00:00 2001 From: William Yang Date: Mon, 20 Feb 2023 14:50:35 +0100 Subject: [PATCH] ci(quic): bump to quicer 0.0.109 for ubuntu22.04 prebuilds --- apps/emqx/rebar.config.script | 2 +- mix.exs | 2 +- rebar.config.erl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/emqx/rebar.config.script b/apps/emqx/rebar.config.script index 12298d596..b2de8a7dd 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/emqx/quic.git", {tag, "0.0.108"}}}. +Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.109"}}}. Dialyzer = fun(Config) -> {dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config), diff --git a/mix.exs b/mix.exs index e801b1da7..ef2ed262f 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.108", override: true}], + do: [{:quicer, github: "emqx/quic", tag: "0.0.109", override: true}], else: [] end diff --git a/rebar.config.erl b/rebar.config.erl index 6361b5d8f..3be4b70f6 100644 --- a/rebar.config.erl +++ b/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.108"}}}. + {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.109"}}}. jq() -> {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.9"}}}.