Bumping version to 0.7.5, adding a top-level main file to ease

npm inclusion.
This commit is contained in:
ciaranj 2010-07-18 21:26:22 +01:00
parent 6942f60797
commit 171b6d4599
3 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@ at express-auth (http://github.com/ciaranj/express-auth)
Change History Change History
============== ==============
* 0.7.5 - Added in a main.js to simplify the require'ing of OAuth
* 0.7.4 - Minor change to add an error listener to the OAuth client (thanks troyk) * 0.7.4 - Minor change to add an error listener to the OAuth client (thanks troyk)
* 0.7.3 - OAuth 2 now sends a Content-Length Http header to keep nginx happy :) * 0.7.3 - OAuth 2 now sends a Content-Length Http header to keep nginx happy :)
* 0.7.2 - Fixes some broken unit tests! * 0.7.2 - Fixes some broken unit tests!

2
main.js Normal file
View File

@ -0,0 +1,2 @@
exports.OAuth = require("./lib/oauth").OAuth;
exports.OAuth2 = require("./lib/oauth2").OAuth2;

View File

@ -1,5 +1,6 @@
{ "name" : "oauth" { "name" : "oauth"
, "version" : "0.7.4" , "version" : "0.7.5"
, "directories" : { "lib" : "./lib" } , "directories" : { "lib" : "./lib" }
, "main" : "main.js"
, "author" : "Ciaran Jessup" , "author" : "Ciaran Jessup"
} }