Prep to release v0.42.0 (#2003)

* Prep to release v0.42.0

* Remove test_context reference from example

* standalone_crate for doc tests because codegen is expensive

* fmt
This commit is contained in:
James Wilson
2025-05-12 10:32:38 +01:00
committed by GitHub
parent 23c62f3d5d
commit 7de8d36806
27 changed files with 162 additions and 61 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ use subxt_metadata::PalletMetadata;
///
/// The function creates a new module named `events` under the pallet's module.
///
/// ```ignore
/// ```rust,ignore
/// pub mod PalletName {
/// pub mod events {
/// ...
@@ -24,7 +24,7 @@ use subxt_metadata::PalletMetadata;
/// The function generates the events as rust structs that implement the `subxt::event::StaticEvent` trait
/// to uniquely identify the event's identity when creating the extrinsic.
///
/// ```ignore
/// ```rust,ignore
/// pub struct EventName {
/// pub event_param: type,
/// }