From e405358a02c221c6413e75dc68b25038f1c81126 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Thu, 27 Sep 2012 12:37:45 -0700 Subject: [PATCH] Release 2.5.0 --- History.md | 10 +++++++++- lib/connect.js | 2 +- package.json | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/History.md b/History.md index 258492a2e..b94ade396 100644 --- a/History.md +++ b/History.md @@ -1,5 +1,13 @@ -2.5.6 / 2012-09-18 +2.5.0 / 2012-09-27 +================== + + * add `err.status = 400` to multipart() errors + * add double-encoding protection to `compress()`. Closes #659 + * add graceful handling cookie parsing errors [shtylman] + * fix typo X-Response-time to X-Response-Time + +2.4.6 / 2012-09-18 ================== * update qs diff --git a/lib/connect.js b/lib/connect.js index 19b4502ad..bb77876c3 100644 --- a/lib/connect.js +++ b/lib/connect.js @@ -29,7 +29,7 @@ exports = module.exports = createServer; * Framework version. */ -exports.version = '2.4.6'; +exports.version = '2.5.0'; /** * Expose mime module. diff --git a/package.json b/package.json index f0cf763bb..05d8b89b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "connect", - "version": "2.4.6", + "version": "2.5.0", "description": "High performance middleware framework", "keywords": ["framework", "web", "middleware", "connect", "rack"], "repository": "git://github.com/senchalabs/connect.git",