Skip to content

Commit

Permalink
release: 0.4.0 (#170)
Browse files Browse the repository at this point in the history
* Updated CHANGELOG w/ 0.4.0 entries

* Bumped crate version to 0.4.0

* Added changelog entry about sandbox

* Disable macos-latest test
  • Loading branch information
ChaoticTempest committed Jul 21, 2022
1 parent e96ff0f commit aed7aa5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workspaces/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit aed7aa5

Please sign in to comment.