Skip to content

Beta 0.7.0

Compare
Choose a tag to compare
@dr-frmr dr-frmr released this 18 Apr 17:10
· 972 commits to main since this release
b699f3f

7th major alpha/beta release.

To run the binary, you must indicate where the home folder for the node will be. You may also optionally specify your HTTP port. The default if unspecified is 8080. Here's an example:

./kinode home/mynodename

For this update, process devs with existing processes are recommended to:

  1. Bump process_lib import:
    process_lib = { git = "https://github.com/kinode-dao/process_lib.git", tag = "v0.6.1" }
    
  2. Bump wit-bindgen:
    wit-bindgen = "0.24.0"
    
  3. Use the newest kit:
    kit update
    
  4. Change the wit_bindgen::generate!() call to remove the exports field:
    wit_bindgen::generate!({
         path: "wit",
         world: "process",
    });
    
  5. If not using call_init!(), add export!() macro call:
    export!(Component);
    

What's Changed

New Contributors

Full Changelog: v0.6.2...v0.7.0