aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2023-08-09 10:17:57 +0800
committerLi Jin <dragon-fly@qq.com>2023-08-09 10:17:57 +0800
commit949166b7db8ff195ce6f1d8d1fa34c242d267af1 (patch)
tree7300fe3cc676b02d7703513c6a97d8ac2121af31 /CHANGELOG.md
parent33260af2175004347a3b9345b67727e596c6fffd (diff)
downloadyuescript-0.18.1.tar.gz
yuescript-0.18.1.tar.bz2
yuescript-0.18.1.zip
update version and docs.v0.18.1
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 95ae614..0cd6dc7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,19 @@
2 2
3The implementation for the original Moonscript language 0.5.0 can be found in the `0.5.0` branch of Yuescript. The Moonscript with fixes and new features is in the main branch of Yuescript. Here are the changelogs for each Yuescript version. 3The implementation for the original Moonscript language 0.5.0 can be found in the `0.5.0` branch of Yuescript. The Moonscript with fixes and new features is in the main branch of Yuescript. Here are the changelogs for each Yuescript version.
4 4
5## v0.18.1
6
7### Added Features
8
9* Implemented '...' for variable declaration within scope using anonymous functions.
10 ```moonscript
11 ok, ... = fn!
12 if ok
13 print select '#', ...
14 print select 1, ...
15 ```
16* Added close-variables support for Lua version targets below 5.4.
17
5## v0.17.10 18## v0.17.10
6 19
7### Added Features 20### Added Features