Skip to content

Commit

Permalink
fix: export public types
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Dec 2, 2023
1 parent b46a927 commit 9459e5e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_test_cases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
strategy:
matrix:
builder:
- 5.0-33
- 5.2-7
otp:
- 24.3.4.2-3
- 26.1.2-1
elixir:
- 1.13.4
- 1.15.7
arch:
- amd64
- arm64
os:
os:
- ubuntu22.04
- ubuntu20.04
- ubuntu18.04
Expand All @@ -48,7 +48,7 @@ jobs:
- el8
- el7
- amzn2

steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
Expand Down
2 changes: 1 addition & 1 deletion src/jiffy.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, jiffy, [
{description, "JSON Decoder/Encoder."},
{vsn, "1.0.5"},
{vsn, "1.0.6"},
{registered, []},
{applications, [kernel, stdlib, xmerl]},
{maintainers, ["Paul J. Davis"]},
Expand Down
1 change: 1 addition & 0 deletions src/jiffy.erl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

-module(jiffy).
-export([decode/1, decode/2, encode/1, encode/2]).
-export_type([decode_options/0, encode_options/0]).
-define(NOT_LOADED, not_loaded(?LINE)).

-compile([no_native]).
Expand Down

0 comments on commit 9459e5e

Please sign in to comment.