Skip to content

Commit

Permalink
Version 1.11.8 (2024-04-07)
Browse files Browse the repository at this point in the history
* Fixes
  * Removes use of `dynamic()` type spec so OTP 24 and OTP 25 are still supported for now.
  • Loading branch information
potatosalad committed Apr 7, 2024
1 parent cc71526 commit a352bb5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.11.8 (2024-04-07)

* Fixes
* Removes use of `dynamic()` type spec so OTP 24 and OTP 25 are still supported for now.

## 1.11.7 (2024-04-07)

* Security Patches
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT = jose
PROJECT_DESCRIPTION = JSON Object Signing and Encryption (JOSE) for Erlang and Elixir.
PROJECT_VERSION = 1.11.7
PROJECT_VERSION = 1.11.8

TEST_DEPS = jiffy jsone jsx libdecaf libsodium ojson proper thoas

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule JOSE.Mixfile do
def project() do
[
app: :jose,
version: "1.11.7",
version: "1.11.8",
elixir: "~> 1.13",
erlc_options: erlc_options(),
build_embedded: Mix.env() == :prod,
Expand Down
2 changes: 1 addition & 1 deletion src/jose.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%% vim: ts=4 sw=4 ft=erlang noet
{application, jose, [
{description, "JSON Object Signing and Encryption (JOSE) for Erlang and Elixir."},
{vsn, "1.11.7"},
{vsn, "1.11.8"},
{id, "git"},
{mod, {'jose_app', []}},
{registered, []},
Expand Down
2 changes: 1 addition & 1 deletion src/jwe/jose_jwe_alg_pbes2.erl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ next_cek(_Key, {ENCModule, ENC}, ALG=#jose_jwe_alg_pbes2{}) ->
%% API functions
%%====================================================================

-spec format_error(dynamic(), dynamic()) -> dynamic().
-spec format_error(term(), term()) -> term().
format_error(_Reason, [{_M, _F, _As, Info} | _]) ->
ErrorInfo = proplists:get_value(error_info, Info, #{}),
ErrorDescription1 = maps:get(cause, ErrorInfo),
Expand Down

0 comments on commit a352bb5

Please sign in to comment.