From eb6de2cb506b55533f550a1b0776c81b15317e23 Mon Sep 17 00:00:00 2001 From: Andrew Bennett Date: Wed, 17 Apr 2024 12:02:51 -0500 Subject: [PATCH] Version 1.11.10 (2024-04-17) --- CHANGELOG.md | 5 +++++ Makefile | 2 +- mix.exs | 2 +- src/jose.app.src | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cef25d..51940c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.11.10 (2024-04-17) + +* Fixes + * Various type spec fixes; see [#165](https://github.com/potatosalad/erlang-jose/pull/165) and [#166](https://github.com/potatosalad/erlang-jose/pull/166). + ## 1.11.9 (2024-04-08) * Fixes diff --git a/Makefile b/Makefile index 9c24f91..a18c26e 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.9 +PROJECT_VERSION = 1.11.10 TEST_DEPS = jiffy jsone jsx libdecaf libsodium ojson proper thoas diff --git a/mix.exs b/mix.exs index 215d77b..c75a2b6 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule JOSE.Mixfile do def project() do [ app: :jose, - version: "1.11.9", + version: "1.11.10", 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 777e510..ef0b2c5 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.9"}, + {vsn, "1.11.10"}, {id, "git"}, {mod, {'jose_app', []}}, {registered, []},