Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare 0.4.14 release #55

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ehttpc changes

## 0.4.14

- Forcefully recreate `gproc_pool`s during `ehttpc_pool:init/1` to prevent reusing pools in an inconsistent state.

## 0.4.13

- Upgrade to gun 1.3.11.
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.13"},
{vsn, "0.4.14"},
{registered, []},
{applications, [
kernel,
Expand Down
8 changes: 7 additions & 1 deletion src/ehttpc.appup.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
%% -*- mode: erlang -*-
{"0.4.13",
{"0.4.14",
[
{"0.4.13", [
{load_module, ehttpc_pool, brutal_purge, soft_purge, []}
]},
{"0.4.12", [ % upgrade gun, no local beam changes in this version
]},
{"0.4.11", [
Expand Down Expand Up @@ -75,6 +78,9 @@
]}
],
[
{"0.4.13", [
{load_module, ehttpc_pool, brutal_purge, soft_purge, []}
]},
{"0.4.12", [ % upgrade gun, no local beam changes in this version
]},
{"0.4.11", [
Expand Down
Loading