From 82809ca83c964d91b97ecb9f945a0a68f3d954e7 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 24 Jul 2024 11:26:38 +0100 Subject: [PATCH] Prep to release v0.16.1 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 876d89b..3fbf068 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## 0.16.1 (2024-07-24) + +This release: +- Adds a "tracing decoder" (via `scale_value::scale::tracing::{decode_as_type,*}`), which is like `scale_value::scale::decode_as_type`, but traces and hands back much more detail in case of a decoding failure, so that it's easier to track down where decoding failed. This is particularly useful when working with historic type information, which must be provided independently and could easily be misaligned with reality. ([#52](https://github.com/paritytech/scale-value/pull/52)) + ## 0.16.0 (2024-05-15) This release: diff --git a/Cargo.toml b/Cargo.toml index 49f2796..bf86eda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale-value" -version = "0.16.0" +version = "0.16.1" authors = ["Parity Technologies "] edition = "2021"