From 02144e0703eb5001baf79bcd79139e20c181556a Mon Sep 17 00:00:00 2001 From: James Wilson Date: Fri, 16 Feb 2024 11:40:22 +0000 Subject: [PATCH] Fix CHANGELOG dates Fix dates of latest releases; whoops, it's 2024! --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c8255..461f383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,11 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## 0.11.1 - 2023-02-16 +## 0.11.1 - 2024-02-16 - `scale-info` was still being pulled in via `scale-type-resolver`; this has now been fixed -## 0.11.0 - 2023-02-09 +## 0.11.0 - 2024-02-09 Up until now, this crate depended heavily on `scale_info` to provide the type information that we used to drive our decoding of types. This release removes the explicit dependency on `scale-info`, and instead depends on `scale-type-resolver`, which offers a generic `TypeResolver` trait whose implementations are able to provide the information needed to decode types (see [this PR](https://github.com/paritytech/scale-decode/pull/45) for more details). So now, the traits and types in `scale-decode` have been made generic over which `TypeResolver` is used to help decode things. `scale-info::PortableRegistry` is one such implementation of `TypeResolver`, and so can continue to be used in a similar way to before. @@ -208,4 +208,4 @@ items left to decode. ## 0.1.0 Initial release containging a `decode` function, `Visitor` trait to implement, and an -`IgnoreVisitor` impl to skip over SCALE bytes instead of decode them into some type. \ No newline at end of file +`IgnoreVisitor` impl to skip over SCALE bytes instead of decode them into some type.