diff --git a/CHANGELOG.md b/CHANGELOG.md index de090154..0c659517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ ## [Unreleased] +## [0.9.0](https://github.com/near/near-workspaces-rs/compare/near-workspaces-v0.8.0...near-workspaces-v0.9.0) - 2023-10-29 + +### Added +- Added API for measuring gas ([#284](https://github.com/near/near-workspaces-rs/pull/284)) + +### Fixed +- Fixed await during acquired lock in rpc::client::fetch_tx_nonce ([#334](https://github.com/near/near-workspaces-rs/pull/334)) + +### Other +- [**breaking**] Migrate to use NearToken instead of raw u128 for balance variables to ensure strict typing ([#333](https://github.com/near/near-workspaces-rs/pull/333)) +- Restrict GasHook type to require RefUnwindSafe and UnwindSafe to avoid breaking release ([#323](https://github.com/near/near-workspaces-rs/pull/323)) ([#326](https://github.com/near/near-workspaces-rs/pull/326)) +- remove unwraps ([#321](https://github.com/near/near-workspaces-rs/pull/321)) + ## [0.8.0](https://github.com/near/near-workspaces-rs/compare/near-workspaces-v0.7.0...near-workspaces-v0.8.0) - 2023-10-04 - [**breaking**] renamed crate to near-workspaces to avoid confusion with Cargo workspaces; imports should now use `near_workspaces` instead of just `workspaces` ([#318](https://github.com/near/near-workspaces-rs/pull/318)) diff --git a/workspaces/Cargo.toml b/workspaces/Cargo.toml index 1ed4bc15..659f8d2c 100644 --- a/workspaces/Cargo.toml +++ b/workspaces/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-workspaces" -version = "0.8.0" +version = "0.9.0" edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md"