From b96a4ee15edaeaed32f9326f2bfada214c442660 Mon Sep 17 00:00:00 2001 From: Moritz Date: Wed, 17 Jan 2024 19:33:10 +0100 Subject: [PATCH 1/4] docs: update changelog for release v0.2.0 --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4c644a..56fc1a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.2.0 (TBD) + +## BREAKING CHANGES: + +- #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). + +## Dependencies + +### Dev-dependencies + +- #118 upgrades: + - `near-sdk` + - `near-workspaces` +- #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. From 1795c7853e870aec201bcc301b58f7e874718aed Mon Sep 17 00:00:00 2001 From: Moritz Date: Wed, 17 Jan 2024 19:37:32 +0100 Subject: [PATCH 2/4] Add links --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56fc1a1..939e2f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,17 +2,17 @@ ## BREAKING CHANGES: -- #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. +- [#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). ## Dependencies ### Dev-dependencies -- #118 upgrades: +- [#118](https://github.com/aurora-is-near/near-plugins/pull/118) upgrades: - `near-sdk` - `near-workspaces` -- #122 removes `borsh` which was an unused dev-dependencies. +- [#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) From 52ee338613878041db973750b78f0ddfe322a9eb Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 18 Jan 2024 22:09:34 +0100 Subject: [PATCH 3/4] Add latest changes --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 939e2f4..86bf673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ - [#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 From eac57b41b3754be88df57ec50499d0d407720b79 Mon Sep 17 00:00:00 2001 From: Moritz Date: Fri, 19 Jan 2024 10:28:57 +0100 Subject: [PATCH 4/4] Bump version in `Cargo.toml` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"