Skip to content

Commit

Permalink
Bumped master version to 0.3.0beta2.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricemach committed Aug 7, 2011
1 parent 2b1ea3b commit 867c8f4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DS_Store
material/
node_modules/
lib/*.js
lib/*.js
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**v0.3.0beta2** (xxxx-xx-xx):

**v0.3.0beta** (2011-07-27):

- Added documentation: API reference at `/docs/reference.md` and annotated source at `/docs/coffeekup.html`.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ Latest version tested with node 0.4.9 and CoffeeScript 1.1.1.

[coffee-world](https://github.com/khoomeister/coffee-world) - "Watches the current folder to compile CoffeeScript into CSS, HTML & JS".

cupcake

## Related projects

[ck](https://github.com/aeosynth/ck) - "a smaller, faster coffeekup": Alternative, barebones implementation.
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.0beta&#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.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.
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
2 changes: 1 addition & 1 deletion docs/reference.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CoffeeKup 0.3.0beta Reference
# CoffeeKup 0.3.0beta2 Reference

## The CoffeeKup object

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": "coffeekup",
"description": "Markup as CoffeeScript.",
"version": "0.3.0beta",
"version": "0.3.0beta2",
"author": "Maurice Machado <[email protected]>",
"homepage": "http://coffeekup.org",
"repository": {"type": "git", "url": "git://github.com/mauricemach/coffeekup.git"},
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.0beta'
coffeekup.version = '0.3.0beta2'

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

0 comments on commit 867c8f4

Please sign in to comment.