From 97ffe8d615e8e92629aac1cd02fca001c11df017 Mon Sep 17 00:00:00 2001 From: Mirko von Leipzig Date: Thu, 4 Jan 2024 10:42:46 +0200 Subject: [PATCH] chore: v0.10.3 release --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- crates/pathfinder/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f125d73e..8a51cfc0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ More expansive patch notes and explanations may be found in the specific [pathfi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.3] - 2024-01-04 + +### Added + +- RPC parsing failures now include the error reason when its an invalid JSON-RPC request (invalid request params already include the error reason). + ## [0.10.3-rc1] - 2023-12-22 ### Added diff --git a/Cargo.lock b/Cargo.lock index f3bda9fbe6..14f2cc123b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5902,7 +5902,7 @@ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef" [[package]] name = "pathfinder" -version = "0.10.3-rc1" +version = "0.10.3" dependencies = [ "anyhow", "assert_matches", diff --git a/crates/pathfinder/Cargo.toml b/crates/pathfinder/Cargo.toml index 5d4de67994..7fe7ea4067 100644 --- a/crates/pathfinder/Cargo.toml +++ b/crates/pathfinder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pathfinder" -version = "0.10.3-rc1" +version = "0.10.3" authors = { workspace = true } edition = { workspace = true } license = { workspace = true }