diff --git a/History.txt b/History.txt index 9a91490061..905cf2ea94 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== In Git +== 0.10.1 (2011-03-20) === New Features * The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon) @@ -14,6 +14,7 @@ * Relax gem dependencies to use >= instead of ~> (Rob Slifka, Aslak Hellesøy) === Bugfixes +* Missing methods in Runtime::ForProgrammingLanguages - make v8 example run again (Chris Mytton) * Features files are sorted before they are executed, giving consistent results accross different OSes (Guewen Baconnier) * Remove duplicate lines in backtraces in the HTML report (Jari Bakken) diff --git a/lib/cucumber/platform.rb b/lib/cucumber/platform.rb index 1ac2bd7c6b..27aabf571e 100644 --- a/lib/cucumber/platform.rb +++ b/lib/cucumber/platform.rb @@ -4,7 +4,7 @@ module Cucumber unless defined?(Cucumber::VERSION) - VERSION = '0.10.0' + VERSION = '0.10.1' BINARY = File.expand_path(File.dirname(__FILE__) + '/../../bin/cucumber') LIBDIR = File.expand_path(File.dirname(__FILE__) + '/../../lib') JRUBY = defined?(JRUBY_VERSION)