wasm-tools 1.240.0

CLI tools for interoperating with WebAssembly files
Documentation
;; RUN: component semver-check % --prev prev --new new

(component
  (type $prev (component
    (export "a:b/prev" (component
      (import "a:a/a@1.0.0" (instance
        (export "f" (func))
      ))
    ))
  ))
  (export "prev" (type $prev))

  (type $new (component
    (export "a:b/new" (component
      (import "a:a/a@1.0.1" (instance
        (export "f" (func))
        (export "f2" (func))
      ))
    ))
  ))
  (export "new" (type $new))
)