NEWS 3.2 KB

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