Skip to content

Commit e3eca36

Browse files
committed
Prepare for release 0.2.0
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 1b52249 commit e3eca36

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
0.2.0
2+
---
3+
4+
**all**
5+
- update to use main for of wazero with TinyGo changes now merged upstream
6+
7+
**build**
8+
- remove unneeded build setup, and also build on PRs/merge to dev branch
9+
10+
**cmd/mecha**
11+
- add -type flag to mecha create module to support Rust and Zig module templates
12+
- add ability to compile Zig modules to mecha build command
13+
- can build Rust WASM unknown modules
14+
- use main wazero fork for new project creation
15+
- extend build command with project/modules subcommands and build flags
16+
17+
**docs**
18+
- add info on how to contribute code to the project
19+
- explain that modules can be developed using TinyGo, Rust, or Zig
20+
- make descriptions consistent with site
21+
- now using the main upstream wazero
22+
- remove instructions for GOPRIVATE
23+
- some clarifications on how the Mechanoid architecture works
24+
25+
**interp/wazero**
26+
- add memory debugging and correct Halt() implementation
27+
- correct handling for Init/Load/Halt to reclaim all resources possible from runtime
28+
29+
0.1.0
30+
---
31+
32+
Initial release

cmd/mecha/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
var (
4-
version = "0.2.0-dev"
4+
version = "0.2.0"
55
sha string
66
)
77

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package mechanoid
22

33
var (
4-
version = "0.2.0-dev"
4+
version = "0.2.0"
55
sha string
66
)
77

0 commit comments

Comments
 (0)