Bump version to 0.9.8 and update release notes

This commit is contained in:
ciaranj 2012-07-28 13:45:19 +01:00
parent 3a15f03c34
commit bd90c0fbf5
2 changed files with 10 additions and 3 deletions

View File

@ -16,6 +16,10 @@ Installation
Change History Change History
============== ==============
* 0.9.8
- OAuth: Support overly-strict OAuth server's that require whitespace separating the Authorization Header parameters (e.g. 500px.com) (Thanks to Christian Schwarz)
- OAuth: Fix incorrect double-encoding of PLAINTEXT OAuth connections (Thanks to Joe Rozner)
- OAuth: Minor safety check added when checking hostnames. (Thanks to Garrick Cheung)
* 0.9.7 * 0.9.7
- OAuth2: Pass back any extra response data for calls to getOAuthAccessToken (Thanks to Tang Bo Hao) - OAuth2: Pass back any extra response data for calls to getOAuthAccessToken (Thanks to Tang Bo Hao)
- OAuth2: Don't force a https request if given a http url (Thanks to Damien Mathieu) - OAuth2: Don't force a https request if given a http url (Thanks to Damien Mathieu)
@ -71,8 +75,8 @@ Change History
* 0.7.0 * 0.7.0
- OAuth1/2: Introduces support for HTTPS end points and callback URLS for OAuth 1.0A and Oauth 2 (Please be aware that this was a breaking change to the constructor arguments order) - OAuth1/2: Introduces support for HTTPS end points and callback URLS for OAuth 1.0A and Oauth 2 (Please be aware that this was a breaking change to the constructor arguments order)
Contributors Contributors (In no particular order)
============ =====================================
* Ciaran Jessup - ciaranj@gmail.com * Ciaran Jessup - ciaranj@gmail.com
* Mark Wubben - http://equalmedia.com/ * Mark Wubben - http://equalmedia.com/
@ -82,3 +86,6 @@ Contributors
* Tang Bo Hao - http://github.com/btspoony * Tang Bo Hao - http://github.com/btspoony
* Damien Mathieu - http://42.dmathieu.com * Damien Mathieu - http://42.dmathieu.com
* Luke Baker - http://github.com/lukebaker * Luke Baker - http://github.com/lukebaker
* Christian Schwarz - http://github.com/chrischw/
* Joe Rozer - http://www.deadbytes.net
* Garrick Cheung - http://www.garrickcheung.com/

View File

@ -1,6 +1,6 @@
{ "name" : "oauth" { "name" : "oauth"
, "description" : "Library for interacting with OAuth 1.0, 1.0A, 2 and Echo. Provides simplified client access and allows for construction of more complex apis and OAuth providers." , "description" : "Library for interacting with OAuth 1.0, 1.0A, 2 and Echo. Provides simplified client access and allows for construction of more complex apis and OAuth providers."
, "version" : "0.9.7" , "version" : "0.9.8"
, "directories" : { "lib" : "./lib" } , "directories" : { "lib" : "./lib" }
, "main" : "index.js" , "main" : "index.js"
, "author" : "Ciaran Jessup <ciaranj@gmail.com>" , "author" : "Ciaran Jessup <ciaranj@gmail.com>"