bumping version numbers to 0.2.0 in anticipation of release soon-ish

This commit is contained in:
Jeremy Ashkenas 2010-01-03 11:01:50 -05:00
parent ba3c5298f7
commit de4eddcad4
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Gem::Specification.new do |s|
s.name = 'coffee-script'
s.version = '0.1.6' # Keep version in sync with coffee-script.rb
s.date = '2009-12-27'
s.version = '0.2.0' # Keep version in sync with coffee-script.rb
s.date = '2010-1-3'
s.homepage = "http://jashkenas.github.com/coffee-script/"
s.summary = "The CoffeeScript Compiler"

View File

@ -10,7 +10,7 @@ require "coffee_script/parse_error"
# Namespace for all CoffeeScript internal classes.
module CoffeeScript
VERSION = '0.1.6' # Keep in sync with the gemspec.
VERSION = '0.2.0' # Keep in sync with the gemspec.
# Compile a script (String or IO) to JavaScript.
def self.compile(script, options={})

View File

@ -5,5 +5,5 @@
"description": "Unfancy JavaScript",
"keywords": ["javascript", "language"],
"author": "Jeremy Ashkenas",
"version": "0.1.6"
"version": "0.2.0"
}