diff --git a/CHANGELOG.md b/CHANGELOG.md index 153bf9c557..7164fb4bbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.7.0] - 2023-07-27 + ### Added +- RPC v0.4 support on `/rpc/v0.4/` - control log color output via `--color auto|always|never` - if Sierra to CASM compilation fails we now fall back to fetching CASM from the gateway - Negate bot spam on response metrics by returning `Ok(200)` on `/` RPC queries. Web crawlers and bots often poke this endpoint which previously skewed response failure metrics when these were rejected. diff --git a/Cargo.lock b/Cargo.lock index 982bf1356e..24a5cce75b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6385,7 +6385,7 @@ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef" [[package]] name = "pathfinder" -version = "0.6.7" +version = "0.7.0" dependencies = [ "anyhow", "assert_matches", diff --git a/crates/pathfinder/Cargo.toml b/crates/pathfinder/Cargo.toml index 0c469d17f6..cc51673d0e 100644 --- a/crates/pathfinder/Cargo.toml +++ b/crates/pathfinder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pathfinder" -version = "0.6.7" +version = "0.7.0" edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.70"