diff --git a/CHANGELOG.md b/CHANGELOG.md index 649de4e..bd1ec6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.10.1 (2020-01-08) + +* Fixes + * Add PEM/DER compatibility layer for PKCS-8 incompatibilities with various versions of OTP, `crypto`, and `public_key`; see [#82](https://github.com/potatosalad/erlang-jose/issues/82) + ## 1.10.0 (2020-01-03) * Enhancements diff --git a/README.md b/README.md index 5853e1a..61058b3 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Add `jose` to your project's dependencies in `mix.exs` ```elixir defp deps() do [ - {:jose, "~> 1.10"} + {:jose, "~> 1.10.1"} ] end ``` @@ -45,9 +45,9 @@ You will also need to specify either [jiffy](https://github.com/davisp/jiffy), [ For example, with Elixir and `mix.exs` ```elixir -defp deps do +defp deps() do [ - {:jose, "~> 1.10"}, + {:jose, "~> 1.10.1"}, {:ojson, "~> 1.0"} ] end diff --git a/mix.exs b/mix.exs index ce9013f..30fc9e3 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule JOSE.Mixfile do def project() do [ app: :jose, - version: "1.10.0", + version: "1.10.1", elixir: "~> 1.0", erlc_options: erlc_options(), build_embedded: Mix.env() == :prod, diff --git a/src/jose.app.src b/src/jose.app.src index a6a7520..2b3ceff 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.10.0"}, + {vsn, "1.10.1"}, {id, "git"}, {mod, {'jose_app', []}}, {registered, []},