Skip to content

Commit

Permalink
Version 1.10.1 (2020-01-08)
Browse files Browse the repository at this point in the history
* Fixes
  * Add PEM/DER compatibility layer for PKCS-8 incompatibilities with various versions of OTP, `crypto`, and `public_key`; see #82
  • Loading branch information
potatosalad committed Jan 8, 2020
1 parent 571a7be commit c7aad59
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions 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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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
```
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/jose.app.src
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.10.0"},
{vsn, "1.10.1"},
{id, "git"},
{mod, {'jose_app', []}},
{registered, []},
Expand Down

0 comments on commit c7aad59

Please sign in to comment.