Release version 0.5.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/NEWS b/NEWS
index 251eae1..3859323 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,10 @@
+Version 0.5 - December 28, 2010
+
+- Exit program, when all threads have exited
+- Improve JSON-RPC failure diagnostics and resilience
+- Add --quiet option, to disable hashmeter output.
+
Version 0.3.3 - December 27, 2010
- Critical fix for sha256_cryptopp 'cryptopp_asm' algo
diff --git a/configure.ac b/configure.ac
index dccf29b..b833434 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT([cpuminer], [0.3.3])
+AC_INIT([cpuminer], [0.5])
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR([cpu-miner.c])
diff --git a/cpu-miner.c b/cpu-miner.c
index 19f3f35..168daf3 100644
--- a/cpu-miner.c
+++ b/cpu-miner.c
@@ -85,9 +85,9 @@ static struct option_help options_help[] = {
#ifdef WANT_VIA_PADLOCK
"\n\tvia\t\tVIA padlock implementation"
#endif
- "\n\tcryptopp\tCrypto++ library implementation"
+ "\n\tcryptopp\tCrypto++ C/C++ implementation"
#ifdef WANT_CRYPTOPP_ASM32
- "\n\tcryptopp_asm32\tCrypto++ library implementation"
+ "\n\tcryptopp_asm32\tCrypto++ 32-bit assembler implementation"
#endif
},