Skip to content

Commit

Permalink
Bump version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Fletcher committed Jan 17, 2017
1 parent aef2e4c commit bd19896
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 11 deletions.
31 changes: 21 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,52 +1,63 @@
# [v1.5.0](https://github.com/tim/erlang-oauth/tree/v1.5.0) (2014-07-25)
# 1.6.0

* Switched to using crypto:hmac/3

* Switched to using crypto:strong_rand_bytes/1

* Exported oauth:signature/5 function

* Erlang/OTP R16B03 or greater now required


# 1.5.0

* Added support for encoding binary terms as parameter values


# [v1.4.0](https://github.com/tim/erlang-oauth/tree/v1.4.0) (2013-07-21)
# 1.4.0

* Added support for new crypto:hmac/3 function

* Moved unit tests from github.com/tim/erlang-oauth-tests


# [v1.3.0](https://github.com/tim/erlang-oauth/tree/v1.3.0) (2012-09-13)
# 1.3.0

* Added oauth:put/6 and oauth:put/7 functions


# [v1.2.2](https://github.com/tim/erlang-oauth/tree/v1.2.2) (2011-11-18)
# 1.2.2

* Added support for new tagged tuple returned by http_uri:parse/1 (R15B)


# [v1.2.1](https://github.com/tim/erlang-oauth/tree/v1.2.1) (2011-10-17)
# 1.2.1

* Updated to use a constant time algorithm to compare signature strings


# [v1.2.0](https://github.com/tim/erlang-oauth/tree/v1.2.0) (2011-06-23)
# 1.2.0

* Added oauth:get/3 and oauth:post/3 functions

* Collapsed into just a single module


# [v1.1.1](https://github.com/tim/erlang-oauth/tree/v1.1.1) (2011-01-29)
# 1.1.1

* Updated to use the correct request parameter normalization algorithm


# [v1.1.0](https://github.com/tim/erlang-oauth/tree/v1.1.0) (2011-01-24)
# 1.1.0

* Updated to use the new public key API introduced in R14B (public_key-0.8)


# [v1.0.2](https://github.com/tim/erlang-oauth/tree/v1.0.2) (2010-11-26)
# 1.0.2

* Added oauth:get/6 and oauth:post/6 with additional HttpcOptions parameter


# [v1.0.1](https://github.com/tim/erlang-oauth/tree/v1.0.1) (2010-11-26)
# 1.0.1

* First version numbered version!
2 changes: 2 additions & 0 deletions THANKS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ Thanks to the following for patches and suggestions:
* Ryan Flynn <github.com/rflynn>

* 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.5.0"},
{vsn, "1.6.0"},
{modules, [oauth]},
{registered, []},
{applications, [kernel, stdlib, crypto, public_key, inets]}
Expand Down

0 comments on commit bd19896

Please sign in to comment.