diff --git a/CHANGELOG.md b/CHANGELOG.md index 55f5c9d..4cef25d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.11.9 (2024-04-08) + +* Fixes + * Change Elixir dependency on `dialyxer` to only be used in `dev` and `test`, thanks to [@requestben](https://github.com/requestben) and [@dvic](https://github.com/dvic); see [#162](https://github.com/potatosalad/erlang-jose/issues/162) and [#163](https://github.com/potatosalad/erlang-jose/issues/163). + * `rebar3` upgrade errors fixed; see [#160](https://github.com/potatosalad/erlang-jose/issues/160) and [#163](https://github.com/potatosalad/erlang-jose/issues/163). + ## 1.11.8 (2024-04-07) * Fixes diff --git a/Makefile b/Makefile index c819e77..9c24f91 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJECT = jose PROJECT_DESCRIPTION = JSON Object Signing and Encryption (JOSE) for Erlang and Elixir. -PROJECT_VERSION = 1.11.8 +PROJECT_VERSION = 1.11.9 TEST_DEPS = jiffy jsone jsx libdecaf libsodium ojson proper thoas diff --git a/mix.exs b/mix.exs index 918ee3b..d5fa9bb 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule JOSE.Mixfile do def project() do [ app: :jose, - version: "1.11.8", + version: "1.11.9", elixir: "~> 1.13", erlc_options: erlc_options(), build_embedded: Mix.env() == :prod, diff --git a/src/jose.app.src b/src/jose.app.src index 3e686d0..777e510 100644 --- a/src/jose.app.src +++ b/src/jose.app.src @@ -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.8"}, + {vsn, "1.11.9"}, {id, "git"}, {mod, {'jose_app', []}}, {registered, []},