Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Dec 29, 2010
1 parent dbf02c2 commit cdc4630
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

1.0.1 / 2010-12-29
==================

* Fixed for middleware stacked via `createServer()`
previously the `foo` middleware passed to `createServer(foo)`
would not have access to Express methods such as `res.send()`
or props like `req.query` etc.

1.0.0 / 2010-11-16
==================

Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The following are the major contributors of Express (in no specific order).

The latest release of Express is compatible with node --version:

v0.2.4
v0.2.5

and connect --version:

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

var version = '1.0.0';
var version = '1.0.1';

/**
* stdin stream.
Expand Down
2 changes: 1 addition & 1 deletion lib/express/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var exports = module.exports = require('connect').middleware;
* Framework version.
*/

exports.version = '1.0.0';
exports.version = '1.0.1';

/**
* Module dependencies.
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": "1.0.0",
"version": "1.0.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
Expand Down

0 comments on commit cdc4630

Please sign in to comment.