From 2f4125209a0f1687cf64fcd51af4f068823a061e Mon Sep 17 00:00:00 2001 From: James Wilson Date: Fri, 21 Nov 2025 15:40:25 +0000 Subject: [PATCH] Prep to release v0.0.5 --- Cargo.lock | 2 +- historic/CHANGELOG.md | 11 +++++++++++ historic/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 historic/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index db8208349c..354b785305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5739,7 +5739,7 @@ dependencies = [ [[package]] name = "subxt-historic" -version = "0.0.4" +version = "0.0.5" dependencies = [ "frame-decode", "frame-metadata 23.0.0", diff --git a/historic/CHANGELOG.md b/historic/CHANGELOG.md new file mode 100644 index 0000000000..5e878f5946 --- /dev/null +++ b/historic/CHANGELOG.md @@ -0,0 +1,11 @@ +# subxt-historic changelog + +This is separate from the Subxt changelog as subxt-historic is currently releasaed separately. + +Eventually this project will merge with Subxt and no longer exist, but until then it's being maintained and updated where needed. + +## 0.0.5 (2025-11-21) + +- Rename some fields for consistency. +- Update versions of underlying libraries being used. +- Add `.visit()` methods to extrinsic fields and storage values, and examples of using this to our examples. diff --git a/historic/Cargo.toml b/historic/Cargo.toml index 9e0b91b7a8..d0a93ca487 100644 --- a/historic/Cargo.toml +++ b/historic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subxt-historic" -version = "0.0.4" +version = "0.0.5" authors.workspace = true edition.workspace = true rust-version.workspace = true