Skip to content

Commit

Permalink
Version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
minoki committed Dec 16, 2023
1 parent 34dd784 commit 31613a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ $ lunarml compile example/hello.sml
Alternatively, you can use Docker to build and run LunarML.

```sh-session
$ docker build --platform linux/amd64 -f package/docker/Dockerfile -t lunarml:0.0 .
$ docker run --rm -v "$(pwd)":/work -w /work --platform linux/amd64 lunarml:0.0 lunarml compile example/hello.sml
$ docker build --platform linux/amd64 -f package/docker/Dockerfile -t lunarml:0.1 .
$ docker run --rm -v "$(pwd)":/work -w /work --platform linux/amd64 lunarml:0.1 lunarml compile example/hello.sml
$ lua example/hello.lua
Hello world!
```
Expand Down
2 changes: 1 addition & 1 deletion package/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lunarml",
"version": "0.0.0",
"version": "0.1",
"description": "",
"main": "lunarml.mjs",
"bin": { "lunarml": "bin/lunarml" },
Expand Down
2 changes: 1 addition & 1 deletion src/version.sml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(* -*- mode: sml; mode: read-only -*- *)
(* This file was generated by set-version.sh *)
structure LunarMLVersion = struct
val version = "0.0.0"
val version = "0.1"
end;
2 changes: 1 addition & 1 deletion version.mk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = 0.0.0
VERSION = 0.1

0 comments on commit 31613a3

Please sign in to comment.