CHANGELOG.md in myrrha-1.1.0 vs CHANGELOG.md in myrrha-1.2.0

- old
+ new

@@ -1,4 +1,24 @@ +# 1.2.0 / 2011-08-15 + +* Added the ability to created SByC domains through simple module extension: + + NegInt = Myrrha.domain(Integer){|i| i < 0} + + can also be built the following way: + + class NegInt < Integer + extend Myrrha::Domain + + def self.predicate + @predicate ||= lambda{|i| i < 0} + end + + end + +* Cleaned the development dependencies, travis-ci.org continuous integration, + and ruby.noe template. + # 1.1.0 / 2011-07-28 ## Enhancements to coerce() * Added coercion rules from Symbol/String to Module/Class