Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 3.09 KB

CHANGES.md

File metadata and controls

46 lines (27 loc) · 3.09 KB

Durian releases

Version 3.3.0 - TBD (javadoc)

Version 3.2.0 - September 14th 2015 (javadoc, jcenter)

  • Added the Errors.asTerminal() method, for treating an Errors instance as a Consumer<Optional<Throwable>> rather than the usual Consumer<Throwable>.
  • Added the TreeQuery.root(TreeDef<T> treeDef, T node) method, which returns the root node based on the given node.

Version 3.1.2 - August 19th 2015 (javadoc, jcenter)

  • Fixed a bug in Throwing.Specific.Bi* where these interfaces did not throw exceptions - which is the whole reason they exist.

Version 3.1.1 - July 27th 2015 (javadoc, jcenter)

  • Gah! MANIFEST.MF still had -SNAPSHOT version. Fixed now. Would be really nice if we could get MANIFEST.MF generation working.

Version 3.1 - July 24th 2015 (javadoc, jcenter)

  • When Errors.asRuntime() wraps an exception as a RuntimeException, it now uses Errors.WrappedAsRuntimeException rather than a generic RuntimeException.

Version 3.0 - July 19th 2015 (javadoc, jcenter)

  • Now available on Maven Central!
  • Merged GetterSetter and Box into just Box.
  • Rather than Box and Box.NonNull extends Box, we now have Box and Box.Nullable.
    • Non-null by default is much better.
    • There should not be an inheritance hierarchy between the nullable and non-null versions, and now there isn't.
  • Added a mechanism for testing trees for equality.
  • Other miscellaneous changes.

Version 2.0 - May 13th 2015 (javadoc, jcenter)

  • Renamed ErrorHandler to Errors. This was done mainly to avoid name conflicts with the many other ErrorHandler classes that are out in the wild, but it also has the advantage of being shorter.

Version 1.0.1 - May 13th 2015 (javadoc, jcenter)

  • The Maven POM was missing the FindBugs annotations, which was causing compile warnings for users of the library. It now includes them under the proper 'provided' scope.

Version 1.0 - May 13th 2015 (javadoc, jcenter)

  • First stable release.

Version 0.1 - April 20th 2015 (javadoc, jcenter)

  • First release, to test out that we can release to jcenter and whatnot.