Skip to content

Commit

Permalink
Release 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jul 6, 2011
1 parent 0ae18bc commit 4dfc1a6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

2.4.1 / 2011-07-06
==================

* Added `res.json()` JSONP support. Closes #737
* Added _extending-templates_ example. Closes #730
* Added "strict routing" setting for trailing slashes
* Added support for multiple envs in `app.configure()` calls. Closes #735
* Changed: `res.send()` using `res.json()`
* Changed: when cookie `path === null` don't default it
* Changed; default cookie path to "home" setting. Closes #731
* Removed _pids/logs_ creation from express(1)

2.4.0 / 2011-06-28
==================

Expand Down
2 changes: 1 addition & 1 deletion bin/express
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var fs = require('fs')
* Framework version.
*/

var version = '2.4.0';
var version = '2.4.1';

/**
* Add session support.
Expand Down
2 changes: 1 addition & 1 deletion lib/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var exports = module.exports = connect.middleware;
* Framework version.
*/

exports.version = '2.4.0';
exports.version = '2.4.1';

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

0 comments on commit 4dfc1a6

Please sign in to comment.