Skip to content

Commit

Permalink
Release version 0.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Garzik authored and Jeff Garzik committed Feb 4, 2011
1 parent e47076c commit 8277202
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions NEWS
@@ -1,4 +1,14 @@

Version 0.6.1 - February 4, 2010

- Fully validate "hash < target", rather than simply stopping our scan
if the high 32 bits are 00000000.
- Add --retry-pause, to set length of pause time between failure retries
- Display proof-of-work hash and target, if -D (debug mode) enabled
- Fix max-nonce auto-adjustment to actually work. This means if your
scan takes longer than 5 seconds (--scantime), the miner will slowly
reduce the number of hashes you work on, before fetching a new work unit.

Version 0.6 - January 29, 2010

- Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
Expand Down
4 changes: 2 additions & 2 deletions README
Expand Up @@ -9,12 +9,12 @@ Dependencies:
(jansson is optional, and is included in-tree)

Basic *nix build instructions:
./autogen.sh
./autogen.sh # only needed if building from git repo
CFLAGS="-O3 -Wall -msse2" ./configure
make

Basic WIN32 build instructions (on Fedora 13; requires mingw32):
./autogen.sh
./autogen.sh # only needed if building from git repo
rm -f mingw32-config.cache
MINGW32_CFLAGS="-O3 -Wall -msse2" mingw32-configure
make
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,5 +1,5 @@

AC_INIT([cpuminer], [0.6])
AC_INIT([cpuminer], [0.6.1])

AC_PREREQ(2.52)
AC_CONFIG_SRCDIR([cpu-miner.c])
Expand Down

0 comments on commit 8277202

Please sign in to comment.