Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Apr 12, 2012
1 parent d5be86b commit 450dc3e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions History.md
@@ -1,4 +1,9 @@

0.1.0 / 2012-04-12
==================

* Added middleware support [Forbes Lindesay]

0.0.4 / 2011-10-19
==================

Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -51,7 +51,7 @@ exports.__defineGetter__('currentNamespace', function(){
* Proxy HTTP methods to provide namespacing support.
*/

express.router.methods.concat(['del']).forEach(function(method){
express.router.methods.concat('del').forEach(function(method){
var orig = HTTPServer.prototype[method];
exports[method] = function(){
var args = Array.prototype.slice.call(arguments)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{ "name": "express-namespace"
, "description": "Express namespaced routes extension"
, "version": "0.0.4"
, "version": "0.1.0"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "keywords": ["express"]
, "main": "index"
Expand Down

0 comments on commit 450dc3e

Please sign in to comment.