Skip to content

Commit 27678d5

Browse files
committed
changelog
1 parent 1b38363 commit 27678d5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
- Use latest compiler for tests. https://github.com/rescript-lang/rescript/pull/7186
2121
- Added infra to modernise AST: theres' Parsetree, Parsetree0 (legacy), and conversion functions to keep compatibility with PPX. https://github.com/rescript-lang/rescript/pull/7185
2222
- Ast cleanup: remove exp object and exp unreachable. https://github.com/rescript-lang/rescript/pull/7189
23+
- Ast cleanup: explicit representation for optional record fields in types. https://github.com/rescript-lang/rescript/pull/7190 https://github.com/rescript-lang/rescript/pull/7191
24+
2325

2426
# 12.0.0-alpha.5
2527

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module M: {
2-
type t = {x?: int}
2+
type t = A({x?: int})
33
} = {
4-
type t = {x: int}
4+
type t = A({x: int})
55
}

0 commit comments

Comments
 (0)