From 53ed9abe777758bfae99645a3dd9383c0d959e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Raab?= Date: Sat, 9 Jan 2016 17:46:03 +0100 Subject: [PATCH] Version 1.7.0 * Change parameter order in verifyCredentials (see #32) --- package.json | 2 +- twitter.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 79663b3..cf912a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-twitter-api", - "version": "1.6.5", + "version": "1.7.0", "description": "Simple module for using Twitter's API in node.js", "keywords": ["twitter", "oauth", "rest", "streaming"], "homepage": "https://github.com/reneraab/node-twitter-api", diff --git a/twitter.js b/twitter.js index cb4b18b..de3176b 100644 --- a/twitter.js +++ b/twitter.js @@ -1,5 +1,5 @@ "use strict"; -var VERSION = "1.6.5", +var VERSION = "1.7.0", querystring = require("querystring"), oauth = require("oauth"), request = require("request"),