Skip to content

Commit

Permalink
Fix CHANGELOG dates
Browse files Browse the repository at this point in the history
Fix dates of latest releases; whoops, it's 2024!
  • Loading branch information
jsdw authored Feb 16, 2024
1 parent 01de55c commit 02144e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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.
`IgnoreVisitor` impl to skip over SCALE bytes instead of decode them into some type.

0 comments on commit 02144e0

Please sign in to comment.