From aed7aa59ad246d61e1483f1a5b0cd38c5d19b2c0 Mon Sep 17 00:00:00 2001 From: Phuong Nguyen Date: Thu, 21 Jul 2022 12:57:53 -0700 Subject: [PATCH] release: 0.4.0 (#170) * Updated CHANGELOG w/ 0.4.0 entries * Bumped crate version to 0.4.0 * Added changelog entry about sandbox * Disable macos-latest test --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 18 +++++++++++++++++- workspaces/Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a804c08a..5ad8c824 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: needs: check strategy: matrix: - platform: [ubuntu-latest, macos-latest] + platform: [ubuntu-latest] # macos-latest disabled due to time issues w/ nearcore runs-on: ${{ matrix.platform }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb1c51a..67105e5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ ## [Unreleased] +## [0.4.0] - 2022-07-20 + +### Added +- Mac M1 Support: https://github.com/near/workspaces-rs/pull/169 +- Added `Account::secret_key` to grab the account's secret key: https://github.com/near/workspaces-rs/pull/144 +- `Debug`/`Clone` impls for `Account`/`Contract`, and `Debug` for `Worker`: https://github.com/near/workspaces-rs/pull/167 +- `ExecutionOutcome::tokens_burnt` is now available: https://github.com/near/workspaces-rs/pull/168 + +### Fixed +- internally no longer creating a new RPC client per call: https://github.com/near/workspaces-rs/pull/154 +- upped near dependencies to fix transitive vulnerabilities: https://github.com/near/workspaces-rs/pull/169 + +### Changed +- Default sandbox version is now using commit hash master/13a66dda709a4148f6395636914dca2a55df1390 (July 18, 2022): https://github.com/near/workspaces-rs/pull/169 + ## [0.3.1] - 2022-06-20 ### Added @@ -66,7 +81,8 @@ - Fix race condition when installing sandbox and running multiples tests at the same time. https://github.com/near/workspaces-rs/pull/46 -[Unreleased]: https://github.com/near/workspaces-rs/compare/0.3.0...HEAD +[Unreleased]: https://github.com/near/workspaces-rs/compare/0.4.0...HEAD +[0.4.0]: https://github.com/near/workspaces-rs/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/near/workspaces-rs/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/near/workspaces-rs/compare/0.2.1...0.3.0 [0.2.1]: https://github.com/near/workspaces-rs/compare/0.2.0...0.2.1 diff --git a/workspaces/Cargo.toml b/workspaces/Cargo.toml index 75d7bb04..97166989 100644 --- a/workspaces/Cargo.toml +++ b/workspaces/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "workspaces" -version = "0.3.1" +version = "0.4.0" edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md"