Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 2.94 KB

File metadata and controls

33 lines (27 loc) · 2.94 KB

4.8

Enhancements

  • Enable upload of snapshot artifacts. (see e834e8b);
  • Add append methods to all Px classes. Fix #326 (see 065ed43);
  • Introduce the Eval monad (see 98294fc);
  • Fluent Equal/Ord construction (see #333);
  • Implement Zipper Eq and Hash and add tests (see #343);
  • Implement Vector equals (see #350);

Fixes

  • Fixed a bug in the NonEmptyList Semigroup implementation that resulted in the same NonEmptyList appended to itself. (Regression in 4.7, see 07f94fa);
  • Fixes #334: exception in Either.LeftProjection.traverseIO (see #335);

Internal

  • Added Scalacheck Arbitrary implementations for Natural and NonEmptyList. (see 405c3ec);
  • Added unit test coverage for Semigroup implementations. The StringBuffer and StringBuilder tests fail because both of those types are mutable. The IO test fails because the ArbitraryIO implementation does not implement equals. (see ef81130);
  • Fixed the ArbitraryIO implementation and created a Properties object for testing the IO semigroup. (see a8e979f);
  • Added working tests coverage for the StringBuffer and StringBuilder semigroup implementations. Added the Semigroup tests to the list of Scalacheck test suite. (see aa4de33);
  • Equal: remove reference to static field of LazyString. Fix #321 (see 6c6dabd);
  • Add IOFunctions tests (see #340);
  • Add Stream tests (see #341);
  • Add tests for Try, F, FW, Digit (see #346);
  • Add Vector tests (see #347);
  • Add Optic tests (see #348);
  • Add Parser tests (see #349);
  • Add FingerTree tests (see #351);
  • Add TreeZipper tests (see #352);
  • Add Reader/Writer tests (see #353);