From b524ca81f6aad32e4fbc0c6250cc7c4201d155ab Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 3 May 2022 13:19:38 +0900 Subject: [PATCH] Update http.js --- lib/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http.js b/lib/http.js index e582723..e2ba812 100644 --- a/lib/http.js +++ b/lib/http.js @@ -709,6 +709,6 @@ exports.get = function(url, data, headers) { return (new HTTPObject()).setHeaders(headers).setParameters(data).setUseCache(false).get(url).responseBody; }; -exports.VERSIONINFO = "HTTP Lib (http.js) version 0.6"; +exports.VERSIONINFO = "HTTP Lib (http.js) version 0.7"; exports.global = global; exports.require = global.require;