Skip to content

Commit 957cf45

Browse files
committed
Release 2.2.2
1 parent f448734 commit 957cf45

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

History.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
2.2.2 / 2011-04-12
3+
==================
4+
5+
* Added second callback support for `res.download()` connection errors
6+
* Fixed `filename` option passing to template engine
7+
28
2.2.1 / 2011-04-04
39
==================
410

bin/express

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var fs = require('fs')
1111
* Framework version.
1212
*/
1313

14-
var version = '2.2.0';
14+
var version = '2.2.2';
1515

1616
/**
1717
* Add session support.

lib/express.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var exports = module.exports = connect.middleware;
2727
* Framework version.
2828
*/
2929

30-
exports.version = '2.2.1';
30+
exports.version = '2.2.2';
3131

3232
/**
3333
* Shortcut for `new Server(...)`.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "express",
33
"description": "Sinatra inspired web development framework",
4-
"version": "2.2.1",
4+
"version": "2.2.2",
55
"author": "TJ Holowaychuk <[email protected]>",
66
"contributors": [
77
{ "name": "TJ Holowaychuk", "email": "[email protected]" },
@@ -10,7 +10,7 @@
1010
{ "name": "Guillermo Rauch", "email": "[email protected]" }
1111
],
1212
"dependencies": {
13-
"connect": ">= 1.2.3 < 2.0.0",
13+
"connect": ">= 1.3.0 < 2.0.0",
1414
"mime": ">= 0.0.1",
1515
"qs": ">= 0.0.6"
1616
},

0 commit comments

Comments
 (0)