Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jul 1, 2010
1 parent 20b64fa commit a697039
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

0.2.0 / 2010-07-01
==================

* Added calls to `Session()` casts the given object as a `Session` instance
* Added passing of `next()` to _router_ callbacks. Closes #46
* Changed; `MemoryStore#destroy()` removes `req.session`
* Changed `res.redirect("back")` to default to "/" when Referr?er is not present
* Fixed _staticProvider_ urlencoded paths issue. Closes #47
* Fixed _staticProvider_ middleware responding to **GET** requests
* Fixed _jsonrpc_ middleware `Accept` header check. Closes #43
* Fixed _logger_ format option
* Fixed typo in _compiler_ middleware preventing the _dest_ option from working

0.1.0 / 2010-06-25
==================

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

var version = '0.1.0';
var version = '0.2.0';

/**
* Use child process workers to utilize all cores
Expand Down
2 changes: 1 addition & 1 deletion lib/connect/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Framework version.
*/

exports.version = '0.1.0';
exports.version = '0.2.0';

/**
* 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": "connect",
"description": "High performance middleware",
"version": "0.1.0",
"version": "0.2.0",
"contributors": [
{ "name": "Tim Caswell", "email": "tim@extjs.com" },
{ "name": "TJ Holowaychuk", "email": "tj@extjs.com" }
Expand Down

0 comments on commit a697039

Please sign in to comment.