From 5758dadaa9c0791287d716fc2beaa0086bc4065c Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Mon, 7 Feb 2022 19:08:48 +0300 Subject: [PATCH] Release v0.14.2 Signed-off-by: Alex Vanin --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- common/version.go | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7073487..24242b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog Changelog for NeoFS Contract +## [0.14.2] - 2022-02-07 + +### Fixed +- Remove duplicate records in NNS contract (#196) + +### Changed +- Evict container estimations on every put (#215) +- Update neo-go to v0.98.1 + ## [0.14.1] - 2022-01-24 ### Fixed @@ -319,6 +328,8 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[0.14.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.1...v0.14.2 +[0.14.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.0...v0.14.1 [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 diff --git a/README.md b/README.md index 28e1837..ce0f4a5 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Side chain contracts: To compile smart contracts you need: -- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.0 +- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.1 ## Compilation diff --git a/common/version.go b/common/version.go index 9168ad3..c758350 100644 --- a/common/version.go +++ b/common/version.go @@ -5,13 +5,13 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std" const ( major = 0 minor = 14 - patch = 1 + patch = 2 // 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 = 13 + prevMinor = 14 prevPatch = 0 Version = major*1_000_000 + minor*1_000 + patch