diff --git a/CHANGELOG b/CHANGELOG index 1eadb38..21389e1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.6.9 + +Removed dependency on macaddr as that does not work on some platforms. + 0.6.8 Fixed broken gem lookup in ruby 1.9. diff --git a/README.markdown b/README.markdown index 075dcf7..68f9d8e 100644 --- a/README.markdown +++ b/README.markdown @@ -67,7 +67,7 @@ Using testbot with Rails 2: # Add testbot to your Gemfile if you use bundler. You also need the plugin because # Rails 2 does not load raketasks from gems. - ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.6.8' + ruby script/plugin install git://github.com/joakimk/testbot.git -r 'refs/tags/v0.6.9' script/generate testbot --connect 192.168.0.100 rake testbot:spec (or :rspec, :test, :features) diff --git a/lib/shared/version.rb b/lib/shared/version.rb index a34ad78..d1bad6f 100644 --- a/lib/shared/version.rb +++ b/lib/shared/version.rb @@ -1,7 +1,7 @@ module Testbot # Don't forget to update readme and changelog def self.version - version = "0.6.8" + version = "0.6.9" dev_version_file = File.join(File.dirname(__FILE__), '..', '..', 'DEV_VERSION') if File.exists?(dev_version_file) version += File.read(dev_version_file)