diff --git a/History.md b/History.md index 7b8d1855..7c2cfb1d 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,15 @@ +0.13.0 / 2010-06-01 +================== + + * Added node v0.1.97 compatibility + * Added support for deleting cookies via Request#cookie('key', null) + * Updated haml submodule + * Fixed not-found page, now using using charset utf-8 + * Fixed show-exceptions page, now using using charset utf-8 + * Fixed view support due to fs.readFile Buffers + * Changed; mime.type() no longer accepts ".type" due to node extname() changes + 0.12.0 / 2010-05-22 ================== diff --git a/lib/express/core.js b/lib/express/core.js index 15d22459..325332a3 100644 --- a/lib/express/core.js +++ b/lib/express/core.js @@ -291,7 +291,7 @@ Server = new Class({ // --- Express Express = { - version: '0.12.0', + version: '0.13.0', config: [], routes: [], plugins: [], diff --git a/package.json b/package.json index 60506a92..acec2db5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "Express", "description": "Sinatra inspired web development framework", - "version": "0.12.0", + "version": "0.13.0", "keywords": ["framework", "sinatra", "web", "rest", "restful"], "directories": { "lib": "./lib"