Skip to content

Commit

Permalink
Release 1.0.0rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Oct 14, 2010
1 parent bacfad3 commit 003599c
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions History.md
@@ -1,4 +1,23 @@


1.0.0rc4 / 2010-10-14
==================

* Added _NODE_ENV_ support, _EXPRESS_ENV_ is deprecated and will be removed in 1.0.0
* Added route-middleware support (very helpful, see the [docs](http://expressjs.com/guide.html#Route-Middleware))
* Added _jsonp callback_ setting to enable/disable jsonp autowrapping [Dav Glass]
* Added callback query check on response.send to autowrap JSON objects for simple webservice implementations [Dav Glass]
* Added `partial()` support for array-like collections. Closes #434
* Added support for swappable querystring parsers
* Added session usage docs. Closes #443
* Added dynamic helper caching. Closes #439 [suggested by maritz]
* Added authentication example
* Added basic Range support to `res.sendfile()` (and `res.download()` etc)
* Changed; `express(1)` generated app using 2 spaces instead of 4
* Default env to "development" again [aheckmann]
* Removed _context_ option is no more, use "scope"
* Fixed; exposing _./support_ libs to examples so they can run without installs
* Fixed mvc example

1.0.0rc3 / 2010-09-20 1.0.0rc3 / 2010-09-20
================== ==================


Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -79,7 +79,7 @@ The latest release of Express is compatible with node --version:


and connect --version: and connect --version:


0.2.5 0.2.6


## License ## License


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


var version = '1.0.0rc3'; var version = '1.0.0rc4';


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


exports.version = '1.0.0rc3'; exports.version = '1.0.0rc4';


/** /**
* Module dependencies. * Module dependencies.
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,15 +1,15 @@
{ {
"name": "express", "name": "express",
"description": "Sinatra inspired web development framework", "description": "Sinatra inspired web development framework",
"version": "1.0.0rc3", "version": "1.0.0rc4",
"author": "TJ Holowaychuk <tj@vision-media.ca>", "author": "TJ Holowaychuk <tj@vision-media.ca>",
"contributors": [ "contributors": [
{ "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" }, { "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" },
{ "name": "Aaron Heckmann", "email": "aaron.heckmann+github@gmail.com" }, { "name": "Aaron Heckmann", "email": "aaron.heckmann+github@gmail.com" },
{ "name": "Ciaran Jessup", "email": "ciaranj@gmail.com" }, { "name": "Ciaran Jessup", "email": "ciaranj@gmail.com" },
{ "name": "Guillermo Rauch", "email": "rauchg@gmail.com" } { "name": "Guillermo Rauch", "email": "rauchg@gmail.com" }
], ],
"dependencies": { "connect": ">= 0.2.5" }, "dependencies": { "connect": ">= 0.2.6" },
"keywords": ["framework", "sinatra", "web", "rest", "restful"], "keywords": ["framework", "sinatra", "web", "rest", "restful"],
"directories": { "lib": "./lib/express" }, "directories": { "lib": "./lib/express" },
"scripts": { "test": "make test" }, "scripts": { "test": "make test" },
Expand Down

0 comments on commit 003599c

Please sign in to comment.