From b5f5fb68a6eb8012c3e24921ea8ce57562790ce5 Mon Sep 17 00:00:00 2001 From: Mirko von Leipzig Date: Wed, 14 Jun 2023 13:57:53 +0200 Subject: [PATCH] chore: v0.6 release --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- crates/pathfinder/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c79482314f..e0b0c93d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.6.0] - 2023-06-14 + ### Fixed - `starknet_simulateTransaction` requires `transactions` instead of `transaction` as input field. +- gateway's error message is hidden when submitting a failed transaction +- `starknet_getEvents` is very slow for certain filter combinations ### Changed - default RPC API version changed from v0.2 to v0.3 +- disallow JSON-RPC notification-style requests ## [0.5.6] - 2023-05-25 diff --git a/Cargo.lock b/Cargo.lock index f0b466f8ed..09fc4b3547 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5885,7 +5885,7 @@ checksum = "ecba01bf2678719532c5e3059e0b5f0811273d94b397088b82e3bd0a78c78fdd" [[package]] name = "pathfinder" -version = "0.5.6" +version = "0.6.0" dependencies = [ "anyhow", "assert_matches", diff --git a/crates/pathfinder/Cargo.toml b/crates/pathfinder/Cargo.toml index 5a6b75e25e..a1b03a531e 100644 --- a/crates/pathfinder/Cargo.toml +++ b/crates/pathfinder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pathfinder" -version = "0.5.6" +version = "0.6.0" edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.65"