File tree Expand file tree Collapse file tree 6 files changed +16
-6
lines changed
Expand file tree Collapse file tree 6 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1+ ## Version 0.2.0 (2024-08-06)
2+
3+ * More work on IO: ` PrimIO ` /` ImperativeIO ` /` TextIO.StreamIO ` /` BinIO.StreamIO `
4+ * Enable dead code elimination for the initialization file
5+ * Pipe operator in ` $(SML_LIB)/basis/pipe.mlb `
6+ * New documentation
7+ * JavaScript: ` JavaScript.Lib.Map ` /` Set ` /` WeakMap ` /` WeakSet `
8+ * Lua: Add ` Lua.method0 ` /` method1 ` /` method2 ` /` method3 `
9+ * Uncurry optimization
10+
111## Version 0.1.0 (2023-12-17)
212
313Initial release.
Original file line number Diff line number Diff line change 1- Copyright (c) 2021 ARATA Mizuki
1+ Copyright (c) 2021-2024 ARATA Mizuki
22
33Permission is hereby granted, free of charge, to any person obtaining a copy of
44this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ $ lunarml compile example/hello.sml
6161Alternatively, you can use Docker to build and run LunarML.
6262
6363``` sh-session
64- $ docker build --platform linux/amd64 -f package/docker/Dockerfile -t lunarml:0.1 .0 .
65- $ docker run --rm -v " $( pwd) " :/work -w /work --platform linux/amd64 lunarml:0.1 .0 lunarml compile example/hello.sml
64+ $ docker build --platform linux/amd64 -f package/docker/Dockerfile -t lunarml:0.2 .0 .
65+ $ docker run --rm -v " $( pwd) " :/work -w /work --platform linux/amd64 lunarml:0.2 .0 lunarml compile example/hello.sml
6666$ lua example/hello.lua
6767Hello world!
6868```
Original file line number Diff line number Diff line change 11{
22 "name" : " lunarml" ,
3- "version" : " 0.1 .0" ,
3+ "version" : " 0.2 .0" ,
44 "description" : " " ,
55 "main" : " lunarml.mjs" ,
66 "bin" : { "lunarml" : " bin/lunarml" },
Original file line number Diff line number Diff line change 11(* -*- mode: sml; mode: read-only -*- *)
22(* This file was generated by set-version.sh *)
33structure LunarMLVersion = struct
4- val version = " 0.1 .0"
4+ val version = " 0.2 .0"
55end ;
Original file line number Diff line number Diff line change 1- VERSION = 0.1 .0
1+ VERSION = 0.2 .0
You can’t perform that action at this time.
0 commit comments