Skip to content

Commit f6b69bb

Browse files
committed
chore: update readme
1 parent 3bca5e0 commit f6b69bb

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
# v0.3.0
2+
3+
## BREAKING CHANGE: `compile` API change
4+
5+
As we mentioned in the [v0.2.0 release](https://github.com/wenyan-lang/wenyan/releases/tag/v0.2.0), the support of using `lang` as the first argument of `compile` is now REMOVED. Please use the new API instead.
6+
7+
```js
8+
// before
9+
compile('js', source, { ... })
10+
// after
11+
compile(source, { lang: 'js', ... })
12+
```
13+
14+
## [New Online IDE](https://wy-lang.org/ide)
15+
The fresh new Online IDE is now landed. With file explorer, rendering, a better editor, auto-complete, [wyg](https://github.com/wenyan-lang/wyg) support, dark mode and more. Please do check it out! (PR #515 #526 #535 #536 #537 #546 #551 #552)
16+
17+
![](https://user-images.githubusercontent.com/7929704/72163213-68d0a480-3391-11ea-9196-9e21e5270149.png)
18+
![](https://user-images.githubusercontent.com/7929704/72163214-68d0a480-3391-11ea-989f-21322555294c.png)
19+
20+
## We are now moved to Typescript!
21+
22+
We have rewritten our codebase to Typescript. The typing declaration file is also shipped in [@wanyanlang/code](https://www.npmjs.com/package/@wenyanlang/core).
23+
24+
Check out for #543 for more details.
25+
26+
### Features
27+
- Importing nested modules structure is now landed (PR #534, thanks @antfu)
28+
29+
### Fixes
30+
- Functions containing elseif is miscompiled (PR #523, thanks @statementreply)
31+
32+
### Stdlib
33+
- New 格物 library (PR #553, thanks @Fros1er)
34+
- Fix atan2(Infinity, Infinity) (PR #538 , thanks @statementreply)
35+
36+
### Tests
37+
- A lot of tests have been added (#527, #530, thanks @statementreply)
38+
39+
### Examples
40+
- Clock (#545, thanks @antfu)
41+
- Chinese-sqrt (增乘開平方術) (#550, thanks @jingkecn)
42+
43+
144
# v0.2.4
245

346
## import in, elseif, if true, if false, any

0 commit comments

Comments
 (0)