Browse Source

Bump version to 1.6.0

Tim Fletcher 8 years ago
parent
commit
bd19896e31
3 changed files with 24 additions and 11 deletions
  1. 21 10
      CHANGELOG.md
  2. 2 0
      THANKS.txt
  3. 1 1
      ebin/oauth.app

+ 21 - 10
CHANGELOG.md

@@ -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 - 0
THANKS.txt

@@ -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>

+ 1 - 1
ebin/oauth.app

@@ -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]}