NEWS 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. Version 0.7.1 - March 2, 2011
  2. - Add support for JSON-format configuration file. See example
  3. file example-cfg.json. Any long argument on the command line
  4. may be stored in the config file.
  5. - Timestamp each solution found
  6. - Improve sha256_4way performance. NOTE: This optimization makes
  7. the 'hash' debug-print output for sha256_way incorrect.
  8. - Use __builtin_expect() intrinsic as compiler micro-optimization
  9. - Build on Intel compiler
  10. - HTTP library now follows HTTP redirects
  11. Version 0.7 - February 12, 2011
  12. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  13. - Use bswap_32, if compiler intrinsic is not available
  14. - Disable full target validation (as opposed to simply H==0) for now
  15. Version 0.6.1 - February 4, 2011
  16. - Fully validate "hash < target", rather than simply stopping our scan
  17. if the high 32 bits are 00000000.
  18. - Add --retry-pause, to set length of pause time between failure retries
  19. - Display proof-of-work hash and target, if -D (debug mode) enabled
  20. - Fix max-nonce auto-adjustment to actually work. This means if your
  21. scan takes longer than 5 seconds (--scantime), the miner will slowly
  22. reduce the number of hashes you work on, before fetching a new work unit.
  23. Version 0.6 - January 29, 2011
  24. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  25. - BeeCee1's sha256 4way optimizations
  26. - lfm's byte swap optimization (improves via, cryptopp)
  27. - Fix non-working short options -q, -r
  28. Version 0.5 - December 28, 2010
  29. - Exit program, when all threads have exited
  30. - Improve JSON-RPC failure diagnostics and resilience
  31. - Add --quiet option, to disable hashmeter output.
  32. Version 0.3.3 - December 27, 2010
  33. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  34. Version 0.3.2 - December 23, 2010
  35. - Critical fix for sha256_via
  36. Version 0.3.1 - December 19, 2010
  37. - Critical fix for sha256_via
  38. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  39. Version 0.3 - December 18, 2010
  40. - Add crypto++ 32bit assembly implementation
  41. - show version upon 'minerd --help'
  42. - work around gcc 4.5.x bug that killed 4way performance
  43. Version 0.2.2 - December 6, 2010
  44. - VIA padlock implementation works now
  45. - Minor build and runtime fixes
  46. Version 0.2.1 - November 29, 2010
  47. - avoid buffer overflow when submitting solutions
  48. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  49. - minor internal optimizations and cleanups
  50. Version 0.2 - November 27, 2010
  51. - Add script for building a Windows installer
  52. - improve hash performance (hashmeter) statistics
  53. - add tcatm 4way sha256 implementation
  54. - Add experimental VIA Padlock sha256 implementation
  55. Version 0.1.2 - November 26, 2010
  56. - many small cleanups and micro-optimizations
  57. - build win32 exe using mingw
  58. - RPC URL, username/password become command line arguments
  59. - remove unused OpenSSL dependency
  60. Version 0.1.1 - November 24, 2010
  61. - Do not build sha256_generic module separately from cpuminer.
  62. Version 0.1 - November 24, 2010
  63. - Initial release.