|
| 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 | + |
| 18 | + |
| 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 | + |
1 | 44 | # v0.2.4
|
2 | 45 |
|
3 | 46 | ## import in, elseif, if true, if false, any
|
|
0 commit comments