diff --git a/coffee-script.gemspec b/coffee-script.gemspec index 4377b76e..a62e479f 100644 --- a/coffee-script.gemspec +++ b/coffee-script.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'coffee-script' - s.version = '0.1.4' # Keep version in sync with coffee-script.rb - s.date = '2009-12-25' + s.version = '0.1.5' # Keep version in sync with coffee-script.rb + s.date = '2009-12-26' s.homepage = "http://jashkenas.github.com/coffee-script/" s.summary = "The CoffeeScript Compiler" diff --git a/documentation/index.html.erb b/documentation/index.html.erb index 4524331f..8eeb4512 100644 --- a/documentation/index.html.erb +++ b/documentation/index.html.erb @@ -469,6 +469,15 @@ coffee --print app/scripts/*.coffee > concatenation.js
+ 0.1.5 + Array slice literals and array comprehensions can now both take Ruby-style + ranges to specify the start and end. JavaScript variable declaration is + now pushed up to the top of the scope, making all assignment statements into + expressions. You can use \ to escape newlines. + The coffee-script command is now called coffee. +
0.1.4 diff --git a/index.html b/index.html index b9ac15f4..aaca41a7 100644 --- a/index.html +++ b/index.html @@ -888,6 +888,15 @@ world...";
+ 0.1.5 + Array slice literals and array comprehensions can now both take Ruby-style + ranges to specify the start and end. JavaScript variable declaration is + now pushed up to the top of the scope, making all assignment statements into + expressions. You can use \ to escape newlines. + The coffee-script command is now called coffee. +
0.1.4 diff --git a/lib/coffee-script.rb b/lib/coffee-script.rb index 0ae253a2..6dffc582 100644 --- a/lib/coffee-script.rb +++ b/lib/coffee-script.rb @@ -9,7 +9,7 @@ require "coffee_script/parse_error" # Namespace for all CoffeeScript internal classes. module CoffeeScript - VERSION = '0.1.4' # Keep in sync with the gemspec. + VERSION = '0.1.5' # Keep in sync with the gemspec. # Compile a script (String or IO) to JavaScript. def self.compile(script, options={}) diff --git a/package.json b/package.json index 30bae056..8b271c05 100644 --- a/package.json +++ b/package.json @@ -5,5 +5,5 @@ "description": "Unfancy JavaScript", "keywords": ["javascript", "language"], "author": "Jeremy Ashkenas", - "version": "0.1.4" + "version": "0.1.5" }