Skip to content

v0.27.0

Compare
Choose a tag to compare
@jsdw jsdw released this 13 Feb 16:35
· 702 commits to master since this release
v0.27.0
7b0e06c

[0.27.0] - 2022-02-13

This is a fairly small release, primarily to bump substrate dependencies to their latest versions.

The main breaking change is fairly small: #804. Here, the BlockNumber associated type has been removed from Config entirely, since it wasn't actually needed anywhere in Subxt. Additionally, the constraints on each of those associated types in Config were made more precise, primarily to tidy things up (but this should result in types more easily being able to meet the requirements here). If you use custom Config, the fix is simply to remove the BlockNumber type. If you also use the Config trait in your own functions and depend on those constraints, you may be able to define a custom MyConfig type which builds off Config and adds back any additional bounds that you want.

Note worthy PRs merged since the last release:

Added

  • Add find last function (#821)
  • Doc: first item is current version comment (#817)

Changed

  • Remove unneeded Config bounds and BlockNumber associated type (#804)