You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

238 lines
1.7 KiB

7 years ago
7 years ago
7 years ago
7 years ago
  1. # Changelog
  2. ## 0.3.0 (August 25, 2017)
  3. BREAKING CHANGES:
  4. - [common] NewBaseService takes the new logger
  5. - [cli] RunCaptureWithArgs now captures stderr and stdout
  6. - +func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (stdout, stderr string, err error)
  7. - -func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (output string, err error)
  8. FEATURES:
  9. - [common] various common HTTP functionality
  10. - [common] Date range parsing from string (ex. "2015-12-31:2017-12-31")
  11. - [pubsub] New package for publish-subscribe with more advanced filtering
  12. BUG FIXES:
  13. - [common] fix atomicity of WriteFileAtomic by calling fsync
  14. - [db] fix memDb iteration index out of range
  15. ## 0.2.2 (June 16, 2017)
  16. FEATURES:
  17. - [common] IsHex and StripHex for handling `0x` prefixed hex strings
  18. - [log] NewTracingLogger returns a logger that output error traces, ala `github.com/pkg/errors`
  19. IMPROVEMENTS:
  20. - [cli] Error handling for tests
  21. - [cli] Support dashes in ENV variables
  22. BUG FIXES:
  23. - [flowrate] Fix non-deterministic test failures
  24. ## 0.2.1 (June 2, 2017)
  25. FEATURES:
  26. - [cli] Log level parsing moved here from tendermint repo
  27. ## 0.2.0 (May 18, 2017)
  28. BREAKING CHANGES:
  29. - [common] NewBaseService takes the new logger
  30. FEATURES:
  31. - [cli] New library to standardize building command line tools
  32. - [log] New logging library
  33. BUG FIXES:
  34. - [autofile] Close file before rotating
  35. ## 0.1.0 (May 1, 2017)
  36. Initial release, combines what were previously independent repos:
  37. - go-autofile
  38. - go-clist
  39. - go-common
  40. - go-db
  41. - go-events
  42. - go-flowrate
  43. - go-logger
  44. - go-merkle
  45. - go-process