Skip to content

Commit

Permalink
Act on CI results: fix post-rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jun 30, 2024
1 parent 835199d commit 019a147
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ for you. If you find yourself digging into the implementation of a
webserver, then Elli might be for you. If you're building web services,
not web sites, then Elli might be for you.

Elli requires OTP 20.0 or newer.
Elli requires OTP 22.0 or newer.

## Installation

Expand Down
3 changes: 1 addition & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

{project_plugins, [
{covertool, "2.0.6"},
{rebar3_lint, "3.2.5"}
{rebar3_lint, "3.2.5"},
{rebar3_ex_doc, "0.2.23"}
]}.
{ex_doc, [
Expand All @@ -44,5 +44,4 @@
{doc, #{provider => ex_doc}}
]}.

{provider_hooks, [{pre, [{eunit, lint}]}]}.
{dialyzer, [{plt_extra_apps, [ssl]}, {warnings, [unknown]}]}.
4 changes: 4 additions & 0 deletions src/elli_http.erl
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
%% operating in handler mode.
-export([close_or_keepalive/2]).

-ifdef(TEST).
-export([get_body/5]).
-endif.

-export_type([version/0]).

-type version() :: {0, 9} | {1, 0} | {1, 1}.
Expand Down

0 comments on commit 019a147

Please sign in to comment.