From 0c0b961aa200a476aa2d2523d3b1b8efcc01f353 Mon Sep 17 00:00:00 2001 From: Chandra Sekar S Date: Tue, 12 Apr 2011 23:16:34 +0530 Subject: [PATCH] Bump version to 0.4.1. --- grasshopper/lib/context.js | 2 +- grasshopper/package.json | 2 +- test/simple/context-test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/grasshopper/lib/context.js b/grasshopper/lib/context.js index 8810deb..48a633a 100644 --- a/grasshopper/lib/context.js +++ b/grasshopper/lib/context.js @@ -71,7 +71,7 @@ function RequestContext(request, response, secure) { ? mime.mimes[this.extn] : 'application/octet-stream', 'date': new Date().toUTCString(), - 'x-powered-by': 'Grasshopper/0.4.0' + 'x-powered-by': 'Grasshopper/0.4.1' }; var cookieLine = request.headers['cookie']; diff --git a/grasshopper/package.json b/grasshopper/package.json index 5036b20..0427673 100644 --- a/grasshopper/package.json +++ b/grasshopper/package.json @@ -1,7 +1,7 @@ { "name" : "grasshopper", "description" : "A feature-rich and flexible MVC framework.", - "version" : "0.4.0", + "version" : "0.4.1", "contributors": [ { "name": "Chandra Sekar S", "email": "chandru.in@gmail.com" } ], diff --git a/test/simple/context-test.js b/test/simple/context-test.js index b5f1d38..970b2df 100644 --- a/test/simple/context-test.js +++ b/test/simple/context-test.js @@ -67,7 +67,7 @@ suite.tests = { assert.deepEqual(res.headers, { 'content-type': 'text/plain; charset=UTF-8', date: new Date().toUTCString(), - 'x-powered-by': 'Grasshopper/0.4.0' + 'x-powered-by': 'Grasshopper/0.4.1' }); assert.deepEqual(res.chunks, ['Hello']); assert.deepEqual(res.encodings, ['utf8']);