Skip to content

Commit

Permalink
Bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Fletcher committed Jan 26, 2021
1 parent 064e049 commit bdd3a80
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 9 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 2.0.0

* **Erlang/OTP 21 or greater now required**

* Added support for crypto:mac/4 in OTP 22+

* Added delete/3, delete/5, and delete/6 functions

* Removed uri_params_encode/1 function (use uri_string:compose_query/1 instead)

* Removed uri_params_decode/1 function (use uri_string:dissect_query/1 instead)


# 1.6.0

* Switched to using crypto:hmac/3
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
# erlang-oauth

An Erlang OAuth 1.0 implementation. Includes functions for generating signatures
(client side), verifying signatures (server side), and some convenience functions
for making OAuth HTTP requests (client side).
An Erlang implementation of [The OAuth 1.0 Protocol](https://tools.ietf.org/html/rfc5849).

Functions for generating signatures (client side), verifying signatures (server side),
and some convenience functions for making OAuth HTTP requests (client side).

## Erlang/OTP compatibility

Erlang/OTP R16B03 or greater.
## Erlang/OTP compatibility

Erlang/OTP 21 or greater.

## Rebar compatibility

This implementation should be fully compatible with [rebar](https://github.com/rebar/rebar) and [rebar3](https://github.com/erlang/rebar3).
## Rebar3 compatibility

Add erlang-oauth as a dependency to your rebar.config file like this:

{deps, [
{oauth, ".*", {git, "https://github.com/tim/erlang-oauth.git"}}
{oauth, {git, "https://github.com/tim/erlang-oauth.git"}}
]}.

Consult the rebar docs for more information.


## Quick start (client usage)

$ make
Expand Down
2 changes: 2 additions & 0 deletions THANKS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Thanks to the following for patches and suggestions:

* Ryan Flynn <github.com/rflynn>

* Sebastian Borrazas <github.com/sborrazas>

* naoya_t <github.com/naoyat>

* narugami <github.com/narugami>
2 changes: 1 addition & 1 deletion ebin/oauth.app
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, oauth, [
{description, "An Erlang OAuth 1.0 implementation"},
{vsn, "1.6.0"},
{vsn, "2.0.0"},
{modules, [oauth]},
{registered, []},
{applications, [kernel, stdlib, crypto, public_key, inets]}
Expand Down

0 comments on commit bdd3a80

Please sign in to comment.