Skip to content

Commit

Permalink
Release 2.0.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Mar 17, 2011
1 parent 5da0163 commit 4c13748
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions History.md
@@ -1,4 +1,13 @@

2.0.0rc2 / 2011-03-17
==================

* Changed; `partial()` "locals" are now optional
* Fixed `SlowBuffer` support. Closes #584 [reported by tyrda01]
* Fixed .filename view engine option [reported by drudge]
* Fixed blog example
* Fixed `{req,res}.app` reference when mounting [Ben Weaver]

2.0.0rc / 2011-03-14
==================

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

var version = '2.0.0rc';
var version = '2.0.0rc2';

/**
* Add session support.
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.0.0rc';
exports.version = '2.0.0rc2';

/**
* Shortcut for `new Server(...)`.
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "2.0.0rc",
"version": "2.0.0rc2",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
Expand All @@ -10,7 +10,7 @@
{ "name": "Guillermo Rauch", "email": "rauchg@gmail.com" }
],
"dependencies": {
"connect": ">= 1.0.1 < 2.0.0",
"connect": ">= 1.1.0 < 2.0.0",
"mime": ">= 0.0.1",
"qs": ">= 0.0.6"
},
Expand Down

0 comments on commit 4c13748

Please sign in to comment.