From 518ae8e659276db3195853982460d074965730ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Rowicki?= <35342116+radrow@users.noreply.github.com> Date: Mon, 12 Aug 2019 16:42:34 +0200 Subject: [PATCH] Mention tuple syntax change in changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index df448ff..a41d621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added ### Changed +- New syntax for tuple types. Now 0-tuple type is encoded as `unit` instead of `()` and + regular tuples are encoded by interspersing inner types with `*`, for instance `int * string`. + Parens are not necessary. Note it only affects the types, values remain as their were before, + so `(1, "a") : int * string` + ### Removed ## [3.2.0] - 2019-06-28