Skip to content

v0.6.0

Compare
Choose a tag to compare
@bitzoic bitzoic released this 27 Aug 07:13
· 1 commit to release since this release
65e09f9

What's Changed

Added

  • #130 Adds the SetNameEvent, SetSymbolEvent, SetDecimalsEvent and TotalSupplyEvent to the SRC-20 standard.
  • #130 Adds the SetMetadataEvent to the SRC-7 standard.

Changed

  • #130 Splits examples into seperate workspace projects for improved continuous integration.
  • #139 Prepares for the v0.6.0 release.

Breaking

  • #131 Makes the SRC-3 mint() function's SubId argument an Option.

Before:

mint(Identity::Address(Address::zero()), SubId::zero(), 100);

After:

mint(Identity::Address(Address::zero()), Some(SubId::zero()), 100);

Full Changelog: v0.5.2...v0.6.0