Skip to content

Commit

Permalink
Prepare for release 0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Apr 11, 2024
1 parent 1b52249 commit e3eca36
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
0.2.0
---

**all**
- update to use main for of wazero with TinyGo changes now merged upstream

**build**
- remove unneeded build setup, and also build on PRs/merge to dev branch

**cmd/mecha**
- add -type flag to mecha create module to support Rust and Zig module templates
- add ability to compile Zig modules to mecha build command
- can build Rust WASM unknown modules
- use main wazero fork for new project creation
- extend build command with project/modules subcommands and build flags

**docs**
- add info on how to contribute code to the project
- explain that modules can be developed using TinyGo, Rust, or Zig
- make descriptions consistent with site
- now using the main upstream wazero
- remove instructions for GOPRIVATE
- some clarifications on how the Mechanoid architecture works

**interp/wazero**
- add memory debugging and correct Halt() implementation
- correct handling for Init/Load/Halt to reclaim all resources possible from runtime

0.1.0
---

Initial release
2 changes: 1 addition & 1 deletion cmd/mecha/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

var (
version = "0.2.0-dev"
version = "0.2.0"
sha string
)

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mechanoid

var (
version = "0.2.0-dev"
version = "0.2.0"
sha string
)

Expand Down

0 comments on commit e3eca36

Please sign in to comment.