Skip to content

Commit

Permalink
Release 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Mar 19, 2010
1 parent ce82a91 commit 273a51a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions History.md
@@ -1,4 +1,21 @@

0.7.6 / 2010-03-19
==================

* Added Request#isXHR. Closes #229
* Added `make install` (for the executable)
* Added `express` executable for setting up simple app templates
* Added "GET /public/*" to Static plugin, defaulting to <root>/public
* Added Static plugin
* Fixed; Request#render() only calls cache.get() once
* Fixed; Namespacing View caches with "view:"
* Fixed; Namespacing Static caches with "static:"
* Fixed; Both example apps now use the Static plugin
* Fixed set("views"). Closes #239
* Fixed missing space for combined log format
* Deprecated Request#sendfile() and 'express/static'
* Removed Server#running

0.7.5 / 2010-03-16
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/express/core.js
Expand Up @@ -313,7 +313,7 @@ Server = new Class({
// --- Express

Express = {
version: '0.7.5',
version: '0.7.6',
config: [],
routes: [],
plugins: [],
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "Express",
"description": "Sinatra inspired web development framework",
"version": "0.7.5",
"version": "0.7.6",
"keywords": ["framework", "sinatra", "web", "rest", "restful"],
"directories": {
"lib": "lib"
Expand Down
2 changes: 1 addition & 1 deletion seed.yml
@@ -1,4 +1,4 @@
---
name: Express
description: Sinatra inspired web development framework
version: 0.7.5
version: 0.7.6

0 comments on commit 273a51a

Please sign in to comment.