Skip to content

Commit

Permalink
Version 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
potatosalad committed Dec 31, 2018
1 parent dd6ccff commit 5ad99d0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# Changelog

## Next
## 1.9.0 (2018-12-31)

* Enhancements
* Add support for [Jason](https://github.com/michalmuskala/jason) JSON encoding and decoding.
* Add support for Poison 4.x and lexical ordering.
* Use `public_key` over `cutkey` for RSA key generation if available.
* Drop support for older versions of OTP (19+ now required).
* Relicense library under MIT license.

* Fixes
* Add macro so the application compiles without warnings after `erlang:get_stacktrace/0` has been deprecated.
* Extra sanity check for RSA padding modes when falling back.

## 1.8.4 (2017-05-18)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)
=====================

Copyright (c) 2014-2018, Andrew Bennett <[email protected]>
Copyright (c) 2014-2019, Andrew Bennett <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
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.8.4
PROJECT_VERSION = 1.9.0

DEPS = base64url

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Add `jose` to your project's dependencies in `mix.exs`
```elixir
defp deps do
[
{:jose, "~> 1.8"}
{:jose, "~> 1.9"}
]
end
```
Expand Down Expand Up @@ -45,7 +45,7 @@ For example, with Elixir and `mix.exs`
```elixir
defp deps do
[
{:jose, "~> 1.8"},
{:jose, "~> 1.9"},
{:ojson, "~> 1.0"}
]
end
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.8.4",
version: "1.9.0",
elixir: "~> 1.0",
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.8.4"},
{vsn, "1.9.0"},
{id, "git"},
{mod, {'jose_app', []}},
{registered, []},
Expand Down

0 comments on commit 5ad99d0

Please sign in to comment.