diff --git a/.github/workflows/run_test_cases.yaml b/.github/workflows/run_test_cases.yaml index 882cee17..b82b9543 100644 --- a/.github/workflows/run_test_cases.yaml +++ b/.github/workflows/run_test_cases.yaml @@ -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 @@ -48,7 +48,7 @@ jobs: - el8 - el7 - amzn2 - + steps: - uses: actions/checkout@v3 - uses: docker/setup-buildx-action@v2 diff --git a/src/jiffy.app.src b/src/jiffy.app.src index e3a43afd..6b08c2af 100644 --- a/src/jiffy.app.src +++ b/src/jiffy.app.src @@ -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"]}, diff --git a/src/jiffy.erl b/src/jiffy.erl index 900354e1..ac5b7fa6 100644 --- a/src/jiffy.erl +++ b/src/jiffy.erl @@ -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]).