diff --git a/README.md b/README.md index 6a842af..963bed9 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,11 @@ See [/examples](http://github.com/mauricemach/coffeekup/tree/master/examples) fo ## Change Log: +**v0.2.1** (2010-11-09): + + - Updated to CoffeeScript 0.9.5 and node 0.2.5/0.3.1. + - Fixed string templates compilation in opera. + **v0.2.0** (2010-11-09): - Huge performance gains, now among the fastest. See `cake benchmark`. @@ -170,4 +175,4 @@ See [/examples](http://github.com/mauricemach/coffeekup/tree/master/examples) fo ## Compatibility -Latest version tested with node 0.2.4/0.3.0 and CoffeeScript 0.9.4. +Latest version tested with node 0.2.5/0.3.1 and CoffeeScript 0.9.5. diff --git a/lib/coffeekup.coffee b/lib/coffeekup.coffee index bfb8606..5443feb 100644 --- a/lib/coffeekup.coffee +++ b/lib/coffeekup.coffee @@ -5,7 +5,7 @@ else coffeekup = exports coffee = require 'coffee-script' -coffeekup.version = '0.2.0' +coffeekup.version = '0.2.1' skeleton = (ck_options) -> ck_options ?= {} diff --git a/lib/coffeekup.js b/lib/coffeekup.js index 1d25915..a256f15 100644 --- a/lib/coffeekup.js +++ b/lib/coffeekup.js @@ -13,7 +13,7 @@ coffeekup = exports; coffee = require('coffee-script'); } - coffeekup.version = '0.2.0'; + coffeekup.version = '0.2.1'; skeleton = function(ck_options) { var ck_buffer, ck_doctypes, ck_esc, ck_indent, ck_render_attrs, ck_repeat, ck_self_closing, ck_tabs, ck_tag, coffeescript, comment, doctype, h, tag, text, _ref, _ref2, _ref3, _ref4; ck_options != null ? ck_options : ck_options = {}; diff --git a/package.json b/package.json index d76db67..e3ae268 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,16 @@ { "name": "coffeekup", "description": "Markup as CoffeeScript.", - "version": "0.2.0", + "version": "0.2.1", "author": "Maurice Machado ", "contributors": [ - {"name": "Maurice Machado", "email": "maurice@bitbending.com"} + {"name": "Maurice Machado", "email": "maurice@bitbending.com"}, + {"name": "Vladimir Dronnikov", "email": "dronnikov@gmail.com"} ], "repository": {"type": "git", "url": "http://github.com/mauricemach/coffeekup.git"}, - "dependencies": {"coffee-script": ">= 0.9.4"}, + "dependencies": {"coffee-script": ">= 0.9.5"}, "keywords": ["template", "view", "coffeescript"], "bin": {"coffeekup": "./bin/coffeekup.coffee"}, "directories": {"lib": "./lib"}, - "engines": {"node": ">= 0.2.4"} + "engines": {"node": ">= 0.2.5"} }