From f5531561b86609ddfcad4f72313f5b11d2d0ded0 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Thu, 13 Jan 2022 15:28:43 +0300 Subject: [PATCH] =?UTF-8?q?Release=20v0.14.0=20-=20Geojedo=20(=EA=B1=B0?= =?UTF-8?q?=EC=A0=9C=EB=8F=84,=20=E5=B7=A8=E6=BF=9F=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 +++++++++++++++++ common/version.go | 8 ++++---- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ed962b..f1eb807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog Changelog for NeoFS Contract +## [0.14.0] - 2022-01-14 - Geojedo (거제도, 巨濟島) + +### Fixed +- Sync `Update` method signature in NNS contract (#197) +- Use current block index in all `GetDisgnatedByRole` invocations (#209) + +### Added +- Version check during contract update (#204) + +### Changed +- Use `storage.RemovePrefix` in subnet contract (#199) + +### Removed +- Netmap contract hash usage in proxy contract (#205) +- Legacy contract owner records from contract storage (#202) + ## [0.13.2] - 2021-12-14 ### Fixed @@ -294,6 +310,7 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[0.14.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.2...v0.14.0 [0.13.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.1...v0.13.2 [0.13.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.12.2...v0.13.0 diff --git a/common/version.go b/common/version.go index 87dc1be..638fdeb 100644 --- a/common/version.go +++ b/common/version.go @@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std" const ( major = 0 - minor = 13 - patch = 2 + minor = 14 + patch = 0 // Versions from which an update should be performed. // These should be used in a group (so prevMinor can be equal to minor if there are // any migration routines. prevMajor = 0 - prevMinor = 12 - prevPatch = 2 + prevMinor = 13 + prevPatch = 0 Version = major*1_000_000 + minor*1_000 + patch