Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
Prep for release 0.6.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
joakimk committed May 30, 2012
1 parent 60fffa7 commit 24f972c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
0.6.9

Removed dependency on macaddr as that does not work on some platforms.

0.6.8 0.6.8


Fixed broken gem lookup in ruby 1.9. Fixed broken gem lookup in ruby 1.9.
Expand Down
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -67,7 +67,7 @@ Using testbot with Rails 2:


# Add testbot to your Gemfile if you use bundler. You also need the plugin because # Add testbot to your Gemfile if you use bundler. You also need the plugin because
# Rails 2 does not load raketasks from gems. # 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 script/generate testbot --connect 192.168.0.100


rake testbot:spec (or :rspec, :test, :features) rake testbot:spec (or :rspec, :test, :features)
Expand Down
2 changes: 1 addition & 1 deletion lib/shared/version.rb
@@ -1,7 +1,7 @@
module Testbot module Testbot
# Don't forget to update readme and changelog # Don't forget to update readme and changelog
def self.version def self.version
version = "0.6.8" version = "0.6.9"
dev_version_file = File.join(File.dirname(__FILE__), '..', '..', 'DEV_VERSION') dev_version_file = File.join(File.dirname(__FILE__), '..', '..', 'DEV_VERSION')
if File.exists?(dev_version_file) if File.exists?(dev_version_file)
version += File.read(dev_version_file) version += File.read(dev_version_file)
Expand Down

0 comments on commit 24f972c

Please sign in to comment.