Skip to content

Latest commit

 

History

History
35 lines (18 loc) · 1.71 KB

releaseHistory.md

File metadata and controls

35 lines (18 loc) · 1.71 KB

Release History

1.3.0

October 19th, 2017.

This release is not backwards compatible with client code JARs compiled against 1.2.1.

Class Identified has been renamed and simplified to ItemExtensionApi, which is an interface that is accessible at runtime via casting. Classes supplied by client code no longer have to subclass this, and are free to define the id and checkInvariant methods or not.

The method numberOf on Scope now takes a Bitemporal as an argument, bringing it in line with render and allowing it to count bitemporal values built by mapping and applicative addition as well as the basic ones.

1.2.1

October 8th, 2017.

Introduce more convenient factory method overloads for creating scopes from a world - these work with Instant rather than the lifted type Unbounded[Instant].

1.2.0

October 7th, 2017.

The API is not binary compatible with that of 1.1.0.

  1. Remove the various id-specific bitemporal factories, as all these did that wasn't already provided by Bitemporal.withId was to provide runtime checking of how many items matched the id.

    This is enforced anyway when client code uses a collection rendered from a bitemporal value, and such an approach won't sit well with the forthcoming subscription API, so these have been removed.

  2. Subclasses of Identifiable no longer define the id property concretely, so there is no need for a constructor to set up the id and backing field for it. All the is required is an abstract definition of id that refines the result type. This means that classes for identifiable items defined by client code should be abstract.

1.1.0

September 15th, 2017.

First public release to Bintray / JCenter.