Skip to content

Commit

Permalink
Release 0.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricemach committed Sep 4, 2011
1 parent 006d502 commit 09e1a17
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**v0.3.0beta2** (xxxx-xx-xx):
**v0.3.0** (2011-09-04):

- Fixed #64 (`hardcode` option masked in express adapter). [smathy]
- Added missing elements from the HTML 5 spec (both valid and obsolete). Closes #66 (thanks @aeosynth).
Expand Down
2 changes: 1 addition & 1 deletion docs/coffeekup.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<span class="nv">coffeekup = </span><span class="nx">exports</span>
<span class="nv">coffee = </span><span class="nx">require</span> <span class="s1">&#39;coffee-script&#39;</span>

<span class="nv">coffeekup.version = </span><span class="s1">&#39;0.3.0beta2&#39;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">&#182;</a> </div> <p>Values available to the <code>doctype</code> function inside a template.
<span class="nv">coffeekup.version = </span><span class="s1">&#39;0.3.0&#39;</span></pre></div> </td> </tr> <tr id="section-2"> <td class="docs"> <div class="pilwrap"> <a class="pilcrow" href="#section-2">&#182;</a> </div> <p>Values available to the <code>doctype</code> function inside a template.
Ex.: <code>doctype 'strict'</code></p> </td> <td class="code"> <div class="highlight"><pre><span class="nv">coffeekup.doctypes =</span>
<span class="s1">&#39;default&#39;</span><span class="o">:</span> <span class="s1">&#39;&lt;!DOCTYPE html&gt;&#39;</span>
<span class="s1">&#39;5&#39;</span><span class="o">:</span> <span class="s1">&#39;&lt;!DOCTYPE html&gt;&#39;</span>
Expand Down
4 changes: 3 additions & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CoffeeKup 0.3.0beta2 Reference
# CoffeeKup 0.3.0 Reference

## The CoffeeKup object

Expand Down Expand Up @@ -216,6 +216,8 @@ When installing CoffeeKup with `npm install coffeekup -g`, you get a `coffeekup`
Usage:
coffeekup [options] path/to/template.coffee

--js compile template to js function
-n, --namespace global object holding the templates (default: "templates")
-w, --watch watch templates for changes, and recompile
-o, --output set the directory for compiled html
-p, --print print the compiled html to stdout
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"name": "coffeekup",
"description": "Markup as CoffeeScript.",
"version": "0.3.0beta2",
"version": "0.3.0",
"author": "Maurice Machado <[email protected]>",
"homepage": "http://coffeekup.org",
"repository": {"type": "git", "url": "git://github.com/mauricemach/coffeekup.git"},
"dependencies": {"coffee-script": ">= 1.1.1"},
"devDependencies": {"jade": ">= 0.13.0", "eco": ">= 1.1.0-rc-1", "ejs": ">= 0.4.3", "haml": ">= 0.4.2"},
"dependencies": {"coffee-script": ">= 1.1.2"},
"devDependencies": {"jade": "0.13.0", "eco": "1.1.0-rc-1", "ejs": "0.4.3", "haml": "0.4.2"},
"keywords": ["template", "view", "coffeescript"],
"bin": "./bin/coffeekup",
"main": "./lib/coffeekup",
"engines": {"node": ">= 0.4.7"},
"contributors": [
"Luis Pedro Coelho <[email protected]>",
"Rachel Carvalho <[email protected]>",
"Vladimir Dronnikov <[email protected]>",
"James Campos <[email protected]>",
"Martin Westergaard Lassen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/coffeekup.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ else
coffeekup = exports
coffee = require 'coffee-script'

coffeekup.version = '0.3.0beta2'
coffeekup.version = '0.3.0'

# Values available to the `doctype` function inside a template.
# Ex.: `doctype 'strict'`
Expand Down

0 comments on commit 09e1a17

Please sign in to comment.