CHANGELOG.rst 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Changelog
  2. #########
  3. All notable changes to this project will be documented in this file.
  4. The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_`, using ReStructuredText instead of Markdown, and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
  5. [1.1.2] - 2020-04-24
  6. ====================
  7. Fixed
  8. -----
  9. * pass unwrapped slice to Recover function
  10. [1.1.1] - 2020-04-22
  11. ====================
  12. Added
  13. -----
  14. + SetLogLevel method to set log level in chain
  15. Changed
  16. -------
  17. * error is passed as the last argument to Recover function
  18. [1.1.0] - 2020-02-11
  19. ====================
  20. Added
  21. -----
  22. + Logging with 4 levels
  23. [1.0.1] - 2019-06-29
  24. ====================
  25. Fixed
  26. -----
  27. * OnSuccess in Handle called once only
  28. [1.0.0] – 2019-06-27
  29. ====================
  30. Added
  31. -----
  32. + Documentation
  33. Changed
  34. -------
  35. * functions are now variadic
  36. * receiver is passed by pointer
  37. [0.1.1] – 2019-06-21
  38. ====================
  39. Added
  40. -----
  41. + Finish
  42. + tests for Finish
  43. [0.1.0] – 2019-06-21
  44. ====================
  45. Added
  46. -----
  47. + basic functionality: Bind, Map, Tee (with safe version), Catch, and Handle
  48. + tests