diff --git a/README.md b/README.md index 81397d1..bcd7d78 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ SOCKS v5 HTTP client implementation in JavaScript for Node.js. +Works great for making HTTP requests through Tor (see bundled example). + ## License ## Copyright © 2012 [Matthew Caruana Galizia](http://twitter.com/mcaruanagalizia), licensed under a [Creative Commons Attribution 3.0 Unported (CC BY 3.0)](http://creativecommons.org/licenses/by/3.0/legalcode) license. diff --git a/index.js b/index.js index 3b6105e..2502fe5 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ * @author Matthew Caruana Galizia * @license Creative Commons Attribution 3.0 Unported (CC BY 3.0) * @copyright Copyright (c) 2013, Matthew Caruana Galizia - * @version 0.1.1 + * @version 0.1.2 * @preserve */ diff --git a/package.json b/package.json index defde4b..7d4afd1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "socks5-http-client", "description": "SOCKS v5 HTTP client.", - "version": "0.1.1", + "version": "0.1.2", "main": "lib/agent.js", "homepage": "https://github.com/mattcg/socks5-http-client", "implements": ["CommonJS/Modules/1.0"], @@ -12,7 +12,7 @@ } ], "keywords": [ - "socks5", "socksv5", "socks", "v5", "http", "client" + "socks5", "socksv5", "socks", "v5", "http", "tor", "client" ], "bugs": { "url": "https://github.com/mattcg/socks5-http-client/issues"