Commit a41db9d436aa3a25bedc2b8599ff216f9eec2c22

Con Kolivas 2011-10-09T14:14:50

Bump version to 2.0.6 and update docs.

diff --git a/NEWS b/NEWS
index 499968d..220c687 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+Version 2.0.6 - October 9, 2011
+
+- Must initialise the donorpool mutex or it fails on windows.
+- Don't make donation work interfere with block change detection allowing
+donation to work regardless of the block chain we're mining on.
+- Expire shares as stale with a separate timeout from the scantime, defaulting
+to 120 seconds.
+- Retry pools after a delay of 15 seconds if none can be contacted on startup
+unless a key is pressed.
+- Don't try to build adl features without having adl.
+- Properly check shares against target difficulty - This will no longer show
+shares when solo mining at all unless they're considered to be a block solve.
+- Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
+- Try to use SSL if the server supports it.
+- Display the total solved blocks on exit (LOL if you're lucky).
+- Use ADL activity report to tell us if a sick GPU is still busy suggesting it
+is hard hung and do not attempt to restart it.
+
+
 Version 2.0.5 - September 27, 2011
 
 - Intensity can now be set to dynamic or static values per-device.
diff --git a/README b/README
index e57500b..ba58004 100644
--- a/README
+++ b/README
@@ -1,6 +1,7 @@
 
 This is a multi-threaded multi-pool CPU and GPU miner with ATI GPU monitoring,
-(over)clocking and fanspeed support for bitcoin and derivative coins.
+(over)clocking and fanspeed support for bitcoin and derivative coins. Do not
+use on multiple block chains at the same time!
 
 This code is provided entirely free of charge by the programmer in his spare
 time so donations would be greatly appreciated. Please consider using the
diff --git a/configure.ac b/configure.ac
index 333c490..bd8b0ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_maj], [2])
 m4_define([v_min], [0])
-m4_define([v_mic], [5])
+m4_define([v_mic], [6])
 ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
 m4_define([v_ver], [v_maj.v_min.v_mic])
 m4_define([lt_rev], m4_eval(v_maj + v_min))