Skip to content

Commit 4e2485c

Browse files
committed
chore: changelog for v0.2.1
1 parent 208bb67 commit 4e2485c

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
# v0.2.1
2+
3+
## Static Type Inference
4+
5+
When the option is turned on, the compiler will now raise exceptions if your code does not typecheck. Also it is capable of producing type signatures for inspection, e.g. ./example/quicksort.wy produces the following:
6+
7+
```
8+
[0-347] {
9+
快排 : (('a) arr) -> (('a) arr)
10+
己 : (num) arr
11+
[33-285] {
12+
首 : ('a) arr
13+
頷 : ('a) arr
14+
尾 : ('a) arr
15+
甲一 : 'a
16+
甲餘 : ('a) arr
17+
乙 : ('a) arr
18+
[136-201] {
19+
丁 : 'a
20+
}
21+
}
22+
}
23+
```
24+
25+
For more detail, please refer to #486
26+
27+
### Standard Library
28+
29+
- Fundamental Calendar library (PR #466, thanks @statementreply), check out [Standard Library cheatsheet](https://github.com/LingDong-/wenyan-lang/blob/master/documentation/Standard-Lib.md) for more details.
30+
31+
### 3rd Party Compilers
32+
33+
- [JVM compiler](https://github.com/MagicLu550/wenyan-lang_jvm) by [MagicLu550](https://github.com/MagicLu550)
34+
35+
### Fixes
36+
37+
- Stdlib was not bundled correctly. (PR #481, thanks @antfu)
38+
39+
140
# v0.2.0
241

342
## ⚠ BREAKING CHANGE: `compile` API change

0 commit comments

Comments
 (0)