From fec7503e9d38df4881c63ecc1102b3a9a64dc48f Mon Sep 17 00:00:00 2001 From: zmstone Date: Thu, 21 Mar 2024 17:03:33 +0100 Subject: [PATCH] fix: upgrade to gun 1.3.11 --- changelog.md | 5 +++++ rebar.config | 2 +- src/ehttpc.app.src | 2 +- src/ehttpc.appup.src | 6 +++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 82f27bc..c2ad09e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # ehttpc changes +## 0.4.13 + +- Upgrade to gun 1.3.11. + [Fix `host` header](https://github.com/emqx/gun/pull/8) + ## 0.4.12 - Upgrade to gun 1.3.10 (OTP 26) diff --git a/rebar.config b/rebar.config index 880721d..a21fc58 100644 --- a/rebar.config +++ b/rebar.config @@ -3,7 +3,7 @@ {minimum_otp_vsn, "21.0"}. {deps, [ - {gun, {git, "https://github.com/emqx/gun", {tag, "1.3.10"}}}, + {gun, {git, "https://github.com/emqx/gun", {tag, "1.3.11"}}}, {gproc, {git, "https://github.com/emqx/gproc", {tag, "0.9.0.1"}}}, {snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "1.0.7"}}} ]}. diff --git a/src/ehttpc.app.src b/src/ehttpc.app.src index d9b2e58..92fa882 100644 --- a/src/ehttpc.app.src +++ b/src/ehttpc.app.src @@ -1,6 +1,6 @@ {application, ehttpc, [ {description, "HTTP Client for Erlang/OTP"}, - {vsn, "0.4.12"}, + {vsn, "0.4.13"}, {registered, []}, {applications, [ kernel, diff --git a/src/ehttpc.appup.src b/src/ehttpc.appup.src index 494cdc6..9b7dc2b 100644 --- a/src/ehttpc.appup.src +++ b/src/ehttpc.appup.src @@ -1,6 +1,8 @@ %% -*- mode: erlang -*- -{"0.4.12", +{"0.4.13", [ + {"0.4.12", [ % upgrade gun, no local beam changes in this version + ]}, {"0.4.11", [ {load_module, ehttpc_pool, brutal_purge, soft_purge, []}, {load_module, ehttpc, brutal_purge, soft_purge, []} @@ -73,6 +75,8 @@ ]} ], [ + {"0.4.12", [ % upgrade gun, no local beam changes in this version + ]}, {"0.4.11", [ {load_module, ehttpc_pool, brutal_purge, soft_purge, []}, {load_module, ehttpc, brutal_purge, soft_purge, []}