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.

231 lines
1.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
  1. # Changelog
  2. ## Develop-Branch changes (unreleased)
  3. BREAKING CHANGES:
  4. - [run] 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] Date range parsing from string (ex. "2015-12-31:2017-12-31")
  10. ## 0.2.2 (June 16, 2017)
  11. FEATURES:
  12. - [common] IsHex and StripHex for handling `0x` prefixed hex strings
  13. - [log] NewTracingLogger returns a logger that output error traces, ala `github.com/pkg/errors`
  14. IMPROVEMENTS:
  15. - [cli] Error handling for tests
  16. - [cli] Support dashes in ENV variables
  17. BUG FIXES:
  18. - [flowrate] Fix non-deterministic test failures
  19. ## 0.2.1 (June 2, 2017)
  20. FEATURES:
  21. - [cli] Log level parsing moved here from tendermint repo
  22. ## 0.2.0 (May 18, 2017)
  23. BREAKING CHANGES:
  24. - [common] NewBaseService takes the new logger
  25. FEATURES:
  26. - [cli] New library to standardize building command line tools
  27. - [log] New logging library
  28. BUG FIXES:
  29. - [autofile] Close file before rotating
  30. ## 0.1.0 (May 1, 2017)
  31. Initial release, combines what were previously independent repos:
  32. - go-autofile
  33. - go-clist
  34. - go-common
  35. - go-db
  36. - go-events
  37. - go-flowrate
  38. - go-logger
  39. - go-merkle
  40. - go-process