Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Apr 4, 2011
1 parent 89383ec commit 4e1aefa
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions History.md
@@ -1,4 +1,18 @@

2.2.1 / 2011-04-04
==================

* Added `layout(path)` helper to change the layout within a view. Closes #610
* Fixed `partial()` collection object support.
Previously only anything with `.length` would work.
When `.length` is present one must still be aware of holes,
however now `{ collection: {foo: 'bar'}}` is valid, exposes
`keyInCollection` and `keysInCollection`.

* Performance improved with better view caching
* Removed `request` and `response` locals
* Changed; errorHandler page title is now `Express` instead of `Connect`

2.2.0 / 2011-03-30
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/express.js
Expand Up @@ -27,7 +27,7 @@ var exports = module.exports = connect.middleware;
* Framework version.
*/

exports.version = '2.2.0';
exports.version = '2.2.1';

/**
* Shortcut for `new Server(...)`.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "2.2.0",
"version": "2.2.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
Expand Down

0 comments on commit 4e1aefa

Please sign in to comment.