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.

239 lines
1.8 KiB

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