Skip to content

Commit

Permalink
Merge pull request #53 from emqx/upgrade-gun-1.3.11
Browse files Browse the repository at this point in the history
fix: upgrade to gun 1.3.11
  • Loading branch information
zmstone authored Mar 21, 2024
2 parents bbd460d + fec7503 commit 9c053a4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -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"}}}
]}.
Expand Down
2 changes: 1 addition & 1 deletion src/ehttpc.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, ehttpc, [
{description, "HTTP Client for Erlang/OTP"},
{vsn, "0.4.12"},
{vsn, "0.4.13"},
{registered, []},
{applications, [
kernel,
Expand Down
6 changes: 5 additions & 1 deletion src/ehttpc.appup.src
Original file line number Diff line number Diff line change
@@ -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, []}
Expand Down Expand Up @@ -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, []}
Expand Down

0 comments on commit 9c053a4

Please sign in to comment.