Skip to content

Commit

Permalink
Update to moonc v0.1.20240813+4025fe3de
Browse files Browse the repository at this point in the history
Signed-off-by: Glenn Lewis <[email protected]>
  • Loading branch information
gmlewis committed Aug 14, 2024
1 parent 156cd06 commit 9da24c6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,8 @@ The code has been updated to support compiler:

```bash
$ moon version --all
moon 0.1.20240809 (e6f8c24 2024-08-09) ~/.moon/bin/moon
moonc v0.1.20240809+5c355ddde ~/.moon/bin/moonc
moon 0.1.20240813 (8b14470 2024-08-13) ~/.moon/bin/moon
moonc v0.1.20240813+4025fe3de ~/.moon/bin/moonc
moonrun 0.1.20240716 (08bce9c 2024-07-16) ~/.moon/bin/moonrun
```

Expand Down
2 changes: 1 addition & 1 deletion examples/count-vowels/count-vowels_wbtest.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ test "to_json" {
|> @jsonutil.stringify(spaces=0, newline=false)
let want =
#|{"count":1,"total":2,"vowels":"some string"}
@test.eq!(got, want)
assert_eq!(got, want)
}
2 changes: 1 addition & 1 deletion moon.mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "extism/moonbit-pdk",
"version": "0.33.0",
"version": "0.34.0",
"deps": {
"gmlewis/jsonutil": "0.22.0"
},
Expand Down
6 changes: 3 additions & 3 deletions pdk/http/header.mbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ test "add" {
h.add("key2", "one")
h.add("key2", "two")
h.add("key2", "two")
@test.eq!(h.0.get("nokey"), None)
@test.eq!(h.0.get("key1"), Some("one"))
@test.eq!(h.0.get("key2"), Some("one,two,two"))
assert_eq!(h.0.get("nokey"), None)
assert_eq!(h.0.get("key1"), Some("one"))
assert_eq!(h.0.get("key2"), Some("one,two,two"))
}

0 comments on commit 9da24c6

Please sign in to comment.