diff --git a/CHANGELOG.md b/CHANGELOG.md index c4c644a..86bf673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# 0.2.0 (TBD) + +## BREAKING CHANGES: + +- [#118](https://github.com/aurora-is-near/near-plugins/pull/118): Update of `rust-version` (MSRV) from 1.64.0 to 1.69.0. Contracts using `near-plugins` now require a Rust version of at least 1.69.0. + - Developers who want to run the test suite of `near-plugins` and run into compilation errors can follow [this workaround](https://github.com/aurora-is-near/near-plugins/pull/118#issuecomment-1794576809). + +## Testing + +- [128](https://github.com/aurora-is-near/near-plugins/pull/128) applies temporary workarounds required to build tests. + +## Dependencies + +### Dev-dependencies + +- [#118](https://github.com/aurora-is-near/near-plugins/pull/118) upgrades: + - `near-sdk` + - `near-workspaces` +- [#122](https://github.com/aurora-is-near/near-plugins/pull/122) removes `borsh` which was an unused dev-dependencies. + # 0.1.0 (2023-05-08) This section lists changes affecting multiple plugins. Changes that affect only individual plugins are listed below. diff --git a/Cargo.toml b/Cargo.toml index 07a3a35..0af239e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ exclude = ["target", "examples"] version = "0.15.0" [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Aurora Labs "] rust-version = "1.69.0"