Skip to content

Commit 4523023

Browse files
authored
Add Erlang/OTP 26 to tested version (#95)
* Add Erlang/OTP 26 for tested version * Compatible dialyzer setting * Fix unexported types
1 parent bbc6566 commit 4523023

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/checkall.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
version: [22, 23, 24, 25]
13+
version: [22, 23, 24, 25, 26]
1414
runs-on: ubuntu-latest
1515

1616
container:

rebar.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@
2424
]
2525
}]
2626
}.
27+
28+
%% See: https://erlangforums.com/t/erlang-otp-26-0-released/2607/7
29+
{dialyzer, [
30+
{plt_extra_apps, [eunit]}, % or alternatively to add eunit to the analysis set without making it a runtime dep
31+
{plt_apps, all_deps} % default: top_level_deps
32+
]}.

src/msgpack.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
-include("msgpack.hrl").
4747

4848
-export_type([object/0, msgpack_map/0, options/0, ext_packer/0, ext_unpacker/0]).
49+
-export_type([msgpack_map_jiffy/0, msgpack_map_jsx/0]).
4950
-type object() :: msgpack_term().
5051

5152
-type options() ::

0 commit comments

Comments
 (0)