From c60bdd5e18eee37563bb69501612440ea0dc8d9e Mon Sep 17 00:00:00 2001 From: Chaitanya Surapaneni Date: Tue, 2 Oct 2012 12:10:20 -0500 Subject: [PATCH] Updated to 0.4 Fixed typos Added contributor --- package.json | 3 ++- test/client_test.coffee | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 62bb615..8927e6e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "3scale", "description": "Client for 3Scale Networks API", - "version": "0.3.3", + "version": "0.4.0", "homepage": "http://www.3scale.net", "repository": { "type": "git", @@ -12,6 +12,7 @@ "Carlos Villuendas ", "Michal Cichra ", "Daniel Stevens ", + "Chaitanya Surapaneni " "Joaquin Rivera (joahking) " ], "main": "lib/index.js", diff --git a/test/client_test.coffee b/test/client_test.coffee index 680fd38..8ba1658 100644 --- a/test/client_test.coffee +++ b/test/client_test.coffee @@ -105,7 +105,7 @@ vows client = new Client(provider_key) assert.isFunction client.authrep_with_user_key - 'ahould throw an exception if authrep_with_user_key is called without :user_key': (Client) -> + 'should throw an exception if authrep_with_user_key is called without :user_key': (Client) -> client = new Client(provider_key) assert.throws (() -> client.authrep_with_user_key({}, ()->)), 'missing user_key'