From 4a652d53c10543ea8b585f0b734eda9e1ce3da5f Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Fri, 17 Jun 2022 14:14:18 +0400 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 218866c..623197a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 function sum(l : list(int)) : int = foldl((+), 0, l) function logical_and(x, y) = (&&)(x, y) ``` +- Contract interfaces polymorphism ### Changed - Error messages have been restructured (less newlines) to provide more unified errors. Also `pp_oneline/1` has been added. - Ban empty record definitions (e.g. `record r = {}` would give an error).