diff --git a/CHANGELOG.md b/CHANGELOG.md index 678d6f9..4e33810 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- Added the `methods::to_json()` helper method for visualizing the serialization of the RPC methods. -- Extracted all the RPC methods into their own modules instead of all being defined in the same `methods.rs` file. -- Moved auth specific logic behind a feature flag. +## [0.4.0] - 2022-04-31 + +- Updated nearcore dependencies, fixing a previous breaking change. - Fixed `gas_price` RPC method serialization. - Fixed `query` method error deserialization. +- Reworked the `JsonRpcError`::`handler_error` method. +- Moved auth specific logic behind a feature flag. +- Added the `methods::to_json()` helper method for visualizing the serialization of the RPC methods. ## [0.3.0] - 2022-02-09 diff --git a/Cargo.toml b/Cargo.toml index b9f291c..5311e77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.56.0" # cargo-workspaces [workspace.metadata.workspaces] -version = "0.3.0" +version = "0.4.0-beta.0" [dependencies] log = "0.4.17"