Skip to content

Commit

Permalink
Version 1.11.9 (2024-04-08)
Browse files Browse the repository at this point in the history
* 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](#162) and [#163](#163).
  * `rebar3` upgrade errors fixed; see [#160](#160) and [#163](#163).
  • Loading branch information
potatosalad committed Apr 8, 2024
1 parent 3955ab7 commit 09de6d2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.8
PROJECT_VERSION = 1.11.9

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.8",
version: "1.11.9",
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.8"},
{vsn, "1.11.9"},
{id, "git"},
{mod, {'jose_app', []}},
{registered, []},
Expand Down

0 comments on commit 09de6d2

Please sign in to comment.