Skip to content

Commit f0c4dfc

Browse files
committed
Version 0.2.0
1 parent 985aa42 commit f0c4dfc

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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

313
Initial release.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 ARATA Mizuki
1+
Copyright (c) 2021-2024 ARATA Mizuki
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ $ lunarml compile example/hello.sml
6161
Alternatively, 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
6767
Hello world!
6868
```

package/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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" },

src/version.sml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(* -*- mode: sml; mode: read-only -*- *)
22
(* This file was generated by set-version.sh *)
33
structure LunarMLVersion = struct
4-
val version = "0.1.0"
4+
val version = "0.2.0"
55
end;

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = 0.1.0
1+
VERSION = 0.2.0

0 commit comments

Comments
 (0)