Skip to content

Commit

Permalink
Prep for 0.13.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdw committed Jun 7, 2024
1 parent 5db248f commit d706cbb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## 0.13.0 - 2023-05-15
## 0.13.1 - 2024-06-07

Useful visitor errors can be hidden in some cases when a `skip_decoding` error is also emitted. This patch release fixes that.

## Fixed

- Don't hide visitor error when a skip_decode error is also emitted ([#58](https://github.com/paritytech/scale-decode/pull/58))

## 0.13.0 - 2024-05-15

This minor release avoids a couple of panics in the case of invalid bytes being interpreted as BitVecs or strings.

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.13.0"
version = "0.13.1"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -17,5 +17,5 @@ keywords = ["parity", "scale", "decoding"]
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]

[workspace.dependencies]
scale-decode = { version = "0.13.0", path = "scale-decode" }
scale-decode-derive = { version = "0.13.0", path = "scale-decode-derive" }
scale-decode = { version = "0.13.1", path = "scale-decode" }
scale-decode-derive = { version = "0.13.1", path = "scale-decode-derive" }

0 comments on commit d706cbb

Please sign in to comment.