Version 2.4.3
This commit is contained in:
parent
1e0274f77d
commit
426fe09f9e
5 changed files with 9 additions and 2 deletions
5
NEWS
5
NEWS
|
@ -1,3 +1,8 @@
|
|||
Version 2.4.3 - Jan 24, 2016
|
||||
|
||||
- Add support for the VIA PadLock Hash Engine on x86-64
|
||||
- Allow block version 4 when using getblocktemplate
|
||||
|
||||
Version 2.4.2 - Apr 28, 2015
|
||||
|
||||
- Add support for Stratum over TLS
|
||||
|
|
1
README
1
README
|
@ -54,6 +54,7 @@ Architecture-specific notes:
|
|||
The configure script outputs a warning if the assembler
|
||||
doesn't support some instruction sets. In that case, the miner
|
||||
can still be built, but unavailable optimizations are left off.
|
||||
The miner uses the VIA Padlock Hash Engine where available.
|
||||
|
||||
Usage instructions: Run "minerd --help" to see options.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
AC_INIT([cpuminer], [2.4.2])
|
||||
AC_INIT([cpuminer], [2.4.3])
|
||||
|
||||
AC_PREREQ([2.59c])
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
|
|
@ -1427,6 +1427,7 @@ static void show_version_and_exit(void)
|
|||
#endif
|
||||
#if defined(USE_ASM) && defined(__x86_64__)
|
||||
" x86_64"
|
||||
" PHE"
|
||||
#endif
|
||||
#if defined(USE_ASM) && (defined(__i386__) || defined(__x86_64__))
|
||||
" SSE2"
|
||||
|
|
2
minerd.1
2
minerd.1
|
@ -1,4 +1,4 @@
|
|||
.TH MINERD 1 "April 2015" "cpuminer 2.4.2"
|
||||
.TH MINERD 1 "January 2016" "cpuminer 2.4.3"
|
||||
.SH NAME
|
||||
minerd \- CPU miner for Bitcoin and Litecoin
|
||||
.SH SYNOPSIS
|
||||
|
|
Loading…
Reference in a new issue