Skip to content

Releases: chevdor/subwasm

Subwasm v0.11.0 (32f429cd)

18 Jun 10:45
Compare
Choose a tag to compare

Description

You can find the changelogs below.

Downloads

Download the binary for your OS from below:

Install

From source

cargo install --git https://github.com/chevdor/tera-cli

Linux

wget https://github.com/chevdor/subwasm/releases/download/v0.11.0/subwasm_linux_amd64_v0.11.0.deb
dpkg -i subwasm_linux_amd64.deb
subwasm --help

MacOS

brew tap chevdor/subwasm https://github.com/chevdor/subwasm
brew update
brew install chevdor/subwasm/subwasm

Changes since v0.10.0

v0.10.0

14 Jun 12:26
Compare
Choose a tag to compare
  • Add (de)compression support
  • Add Karura [@xlc ]
  • Add new clean script
  • Move integration tests to the right folder
  • Add statemine and westmint
  • Add comvenience --json flag for the meta command
  • Add shorter aliases for the chains

v0.9.0

04 Jun 10:40
Compare
Choose a tag to compare
  • new raw differ method
  • new internal options in the raw differ to reduce the amount of output for the diff
  • new --block flag for the meta and info commands
  • additionnal endpoints for the various chains
  • various bug fixes and minor improvements

v0.8.0

04 Jun 10:40
Compare
Choose a tag to compare
  • The meta command can now show the list of modules or one specific one
  • new metadata --module to filter and show a single module
  • Add v13 and v14 simple querying

v0.7.0

04 Jun 10:39
Compare
Choose a tag to compare
  • add blake2-256 hash
  • add IPFS hash
  • add --chain flag to the diff and metadata commands
  • add a logger

v0.6.0

04 Jun 10:38
Compare
Choose a tag to compare

Besides some cleanup, this version introduces changes related to the options and flags you can pass to the cli.

  • many of the named flags have been removed. For instance subwasm diff -a r1.wasm -b r2.wasm now becomes subwasm diff r1.wasm r2.wasm, subwasm get --url http://foo:9933 becomes subwasm get http://foo:9933.
  • new root level flag: --json will allow producing json output. This changes the behavior of the ìnfo` command

v0.5.0

04 Jun 10:38
Compare
Choose a tag to compare
  • add a --chain flag to simply usage for get and info
  • add demos (gif)
  • workaround for a Rust stdio bug that occurs when piping the output to a command such as head

v0.4.0

04 Jun 10:37
Compare
Choose a tag to compare
  • new option aliases: --in for --input, --out for --output
  • improved the data reported by the info command
  • new diff command allowing to compare local and onchain runtimes

v0.3.0

04 Jun 10:37
Compare
Choose a tag to compare

Add a LoggerMock to allow decoding runtimes with logging enabled.

v0.2.0

04 Jun 10:36
Compare
Choose a tag to compare

This version mainly gets rid of our mini rpc-client and switches to using jsonrpsee.

  • the metadata command is now aliased to meta so users can use both
  • rpc-client has been removed and replaced by jsonrpsee
  • using WebSockets is now supported
  • the nighlty requirements have been removed, the project now builds on rust stable

MacOS users can install using Homebrew:

brew tap chevdor/subwasm
brew install subwasm