Release v1.1.1 - 2017-06-16
References: #71
-
Feature - Support lambdas for default attribute values.
date_attr :date, default_value -> { Date.today }
-
Issue - An attribute's default_value could be modified and carried over to
new instances of the model. With this change, default values are deep copied,
and are hydrated at item creation to ensure correct persistence of mutable
objects.