Skip to content

Commit

Permalink
Release 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricemach committed Sep 8, 2011
1 parent 4d4d618 commit a8aa339
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**v0.2.0beta2** (xxxx-xx-xx):
**v0.2.0** (2011-09-08):

- Changed: externals (`zappa {foo} ->`) are available at all scopes, shadow globals and root scope locals.

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
d88P d8888888888 888 888 d8888888888 @@@@@@@@
d8888888888 d88P 888 888 888 d88P 888 @@@@@@

### Not your mom's node framework
This document refers to the recently released **0.2.0 beta**. You can find a review on changes from 0.1.x at `/docs/peaches.md`.
### Node development for the lazy
**Zappa** is a [CoffeeScript](http://coffeescript.org)-optimized, radically minimalist interface orchestrating [Express](http://expressjs.com), [Socket.IO](http://socket.io), [Sammy](http://sammyjs.org) and other top talent, with two obsessions in mind:

Expand All @@ -32,7 +30,7 @@ And give your foot a push:
$ coffee cuppa.coffee
info - socket.io started
Express server listening on port 3000 in development mode
Zappa 0.2.0beta orchestrating the show
Zappa 0.2.0 orchestrating the show

### Nice, but one-line string responses are mostly useless. Can you show me something closer to a real web app?

Expand Down
2 changes: 1 addition & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: API Reference (v0.2.0beta2)
title: API Reference (v0.2.0)
permalink: /reference/index.html
---

Expand Down
2 changes: 1 addition & 1 deletion docs/zappa.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html> <html> <head> <title>zappa.coffee</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" media="all" href="docco.css" /> </head> <body> <div id="container"> <div id="background"></div> <div id="jump_to"> Jump To &hellip; <div id="jump_wrapper"> <div id="jump_page"> <a class="source" href="client.html"> client.coffee </a> <a class="source" href="zappa.html"> zappa.coffee </a> </div> </div> </div> <table cellpadding="0" cellspacing="0"> <thead> <tr> <th class="docs"> <h1> zappa.coffee </h1> </th> <th class="code"> </th> </tr> </thead> <tbody> <tr id="section-1"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-1">&#182;</a> </div> <p><strong>Zappa</strong> is a <a href="http://coffeescript.org">CoffeeScript</a> DSL-ish interface for building web apps on the
<a href="http://nodejs.org">node.js</a> runtime, integrating <a href="http://expressjs.com">express</a>, <a href="http://socket.io">socket.io</a>
and other best-of-breed libraries.</p> </td> <td class="code"> <div class="highlight"><pre><span class="nv">zappa = version: </span><span class="s1">&#39;0.2.0beta2&#39;</span>
and other best-of-breed libraries.</p> </td> <td class="code"> <div class="highlight"><pre><span class="nv">zappa = version: </span><span class="s1">&#39;0.2.0&#39;</span>

<span class="nv">log = </span><span class="nx">console</span><span class="p">.</span><span class="nx">log</span>
<span class="nv">fs = </span><span class="nx">require</span> <span class="s1">&#39;fs&#39;</span>
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": "zappa",
"description": "CoffeeScript minimalist interface to express, socket.io and others",
"version": "0.2.0beta2",
"version": "0.2.0",
"author": "Maurice Machado <maurice@bitbending.com>",
"homepage": "http://zappajs.org",
"repository": {"type": "git", "url": "git://github.com/mauricemach/zappa.git"},
Expand Down
2 changes: 1 addition & 1 deletion src/zappa.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# [node.js](http://nodejs.org) runtime, integrating [express](http://expressjs.com), [socket.io](http://socket.io)
# and other best-of-breed libraries.

zappa = version: '0.2.0beta2'
zappa = version: '0.2.0'

log = console.log
fs = require 'fs'
Expand Down

0 comments on commit a8aa339

Please sign in to comment.