CHANGELOG.adoc 1.0 KB

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