From 54a7510667c89868c558a8fb75da15c9ed819fdf Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Mon, 22 Apr 2024 17:44:27 +0200 Subject: [PATCH] chore: release v0.9.0 (#140) --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff2375a..c89f70a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/near/near-jsonrpc-client-rs/compare/v0.8.0...v0.9.0) - 2024-04-22 + +### Added +- Upgrade near-primitives to 0.21.x and refactor the API adding `wait_until` flag, drop `check_tx` method ([#136](https://github.com/near/near-jsonrpc-client-rs/pull/136)) + +### Other +- removed array creation for parameters in fn params() implementation for send_tx method ([#142](https://github.com/near/near-jsonrpc-client-rs/pull/142)) + ## [0.8.0](https://github.com/near/near-jsonrpc-client-rs/compare/v0.7.0...v0.8.0) - 2024-01-21 ### Other diff --git a/Cargo.toml b/Cargo.toml index 6a140b7..4313046 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-jsonrpc-client" -version = "0.8.0" +version = "0.9.0" authors = ["Near Inc "] edition = "2021" license = "MIT OR Apache-2.0"