Skip to content

Commit

Permalink
Release 1.0.0rc
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jul 30, 2010
1 parent 808c519 commit aaa5deb
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions History.md
@@ -1,3 +1,20 @@

1.0.0rc / 2010-07-28
==================

* Added mounted hook. Closes #369
* Added connect dependency to _package.json_

* Removed "reload views" setting and support code
development env never caches, production always caches.

* Removed _param_ in route callbacks, signature is now
simply (req, res, next), previously (req, res, params, next).
Use _req.params_ for path captures, _req.query_ for GET params.

* Fixed "home" setting
* Fixed middleware/router precedence issue. Closes #366
* Fixed; _configure()_ callbacks called immediately. Closes #368

1.0.0beta2 / 2010-07-23
==================
Expand Down
2 changes: 1 addition & 1 deletion bin/express
Expand Up @@ -12,7 +12,7 @@ var sys = require('sys'),
* Framework version.
*/

var version = '1.0.0beta2';
var version = '1.0.0rc';

/**
* Usage documentation.
Expand Down
2 changes: 1 addition & 1 deletion lib/express/index.js
Expand Up @@ -9,7 +9,7 @@
* Framework version.
*/

exports.version = '1.0.0beta2';
exports.version = '1.0.0rc';

/**
* Module dependencies.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "1.0.0beta2",
"version": "1.0.0rc",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
Expand Down

0 comments on commit aaa5deb

Please sign in to comment.