From 5c58093a757bb3ad004a269b48adfb80ffeae230 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Thu, 14 Oct 2021 15:40:14 +0300 Subject: [PATCH] =?UTF-8?q?Release=20v0.12.0=20-=20Udo=20(=EC=9A=B0?= =?UTF-8?q?=EB=8F=84,=20=E7=89=9B=E5=B3=B6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alex Vanin --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 1 + common/version.go | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f0853..8df76b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog Changelog for NeoFS Contract +## [0.12.0] - 2021-10-15 - Udo (우도, 牛島) + +NNS update with native container names in container contract. + +### Fixed +- Safe methods list in reputation contract manifest (#144) + +### Added +- SOA record type support in NNS (#125) +- Test framework for N3 contracts written in go (#137) +- Unit tests for container and NNS contracts (#135, #137) +- `PutNamed` method in container contract that registers domain in NNS (#135) + +### Changed +- NNS contract supports multiple records of the same type (#125) + ## [0.11.0] - 2021-09-22 - Mungapdo (문갑도, 文甲島) Contract owners are removed, now side chain committee is in charge of contract @@ -216,6 +232,7 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[0.12.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.1...v0.11.0 [0.10.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.9.2...v0.10.0 diff --git a/README.md b/README.md index 22d7275..9b181f9 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ ok github.com/nspcc-dev/neofs-contract/tests 0.462s |v0.9.x|[v2.7.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.7.0), [v2.8.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.8.0)| |v0.10.x|[v2.7.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.7.0), [v2.8.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.8.0)| |v0.11.x|[v2.7.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.7.0), [v2.8.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.8.0), [v2.9.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.9.0)| +|v0.12.x|[v2.10.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.10.0)| # License diff --git a/common/version.go b/common/version.go index 4dda260..7f69981 100644 --- a/common/version.go +++ b/common/version.go @@ -2,7 +2,7 @@ package common const ( major = 0 - minor = 11 + minor = 12 patch = 0 Version = major*1_000_000 + minor*1_000 + patch