Skip to content

Commit

Permalink
Release 0.3.1.
Browse files Browse the repository at this point in the history
Changed dependency minors to ".x". Closes mauricemach#98.
  • Loading branch information
mauricemach authored and esamattis committed Oct 13, 2011
1 parent c017b98 commit 72b0e58
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**v0.3.1** (2011-10-06):

- Changed dependency minors to ".x". Closes #98.

**v0.3.0 "The Gumbo Variations"** (2011-09-29):

- Changed: "magic locals" replaced by properties of `this` (`get` becomes `@get`). See #74 and the [announcement](http://zappajs.org/docs/0.3-gumbo/announcement).
Expand Down
6 changes: 3 additions & 3 deletions docs/0.3-gumbo/reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: default
title: API Reference (v0.3.0)
title: API Reference (v0.3.1)
permalink: /reference/index.html
---

Expand All @@ -14,9 +14,9 @@ permalink: /reference/index.html

### zappa.version

Version of zappa running. Ex.: `0.3.0`.
Version of zappa running. Ex.: `0.3.1`.

If you're running a version not released on npm (directly from the repo), it will have `edge` appended to it. Ex.: `0.3.0edge`.
If you're running a version not released on npm (directly from the repo), it will have `edge` appended to it. Ex.: `0.3.1edge`.

### zappa.app

Expand Down
2 changes: 1 addition & 1 deletion docs/crashcourse.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.3.0 "The Gumbo Variations" orchestrating the show
Zappa 0.3.1 "The Gumbo Variations" orchestrating the show

(hat tip to [sinatra](http://sinatrarb.com))

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.3.0&#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.3.1&#39;</span>

<span class="nv">codename = </span><span class="s1">&#39;The Gumbo Variations&#39;</span>

Expand Down
9 changes: 7 additions & 2 deletions 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.3.0",
"version": "0.3.1",
"author": "Maurice Machado <maurice@bitbending.com>",
"homepage": "http://zappajs.org",
"repository": {"type": "git", "url": "git://github.com/mauricemach/zappa.git"},
Expand All @@ -13,7 +13,12 @@
"socket.io": "0.8.4",
"coffeekup": "0.3.1",
"node-uuid": "1.2.0",
"pile": "0.2.1"
"piler": "0.3.0",
"express": "2.4.x",
"socket.io": "0.8.x",
"coffeekup": "0.3.x",
"node-uuid": "1.2.x",
"uglify-js": "1.1.x"
},
"devDependencies": {
"jsdom": "0.2.5",
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.3.0'
zappa = version: '0.3.1'

codename = 'The Gumbo Variations'

Expand Down

0 comments on commit 72b0e58

Please sign in to comment.