Skip to content

Commit

Permalink
Add Erlang/OTP 26 to tested version (#95)
Browse files Browse the repository at this point in the history
* Add Erlang/OTP 26 for tested version

* Compatible dialyzer setting

* Fix unexported types
  • Loading branch information
kuenishi committed Sep 17, 2023
1 parent bbc6566 commit 4523023
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/checkall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
version: [22, 23, 24, 25]
version: [22, 23, 24, 25, 26]
runs-on: ubuntu-latest

container:
Expand Down
6 changes: 6 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@
]
}]
}.

%% See: https://erlangforums.com/t/erlang-otp-26-0-released/2607/7
{dialyzer, [
{plt_extra_apps, [eunit]}, % or alternatively to add eunit to the analysis set without making it a runtime dep
{plt_apps, all_deps} % default: top_level_deps
]}.
1 change: 1 addition & 0 deletions src/msgpack.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
-include("msgpack.hrl").

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

-type options() ::
Expand Down

0 comments on commit 4523023

Please sign in to comment.