From b57f2ffe6b5c0f62dd9cdce7ffa300112f3389b7 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Tue, 19 Oct 2021 13:03:04 +0300 Subject: [PATCH] Release v0.12.1 Signed-off-by: Alex Vanin --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- common/version.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df76b8..dc2561e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # Changelog Changelog for NeoFS Contract +## [0.12.1] - 2021-10-19 + +### Fixed +- Sanity checks for notary enabled environment in container contract (#149) + +### Added +- NeoFS global configuration parameter `ContainerAliasFee`. This parameter + used as additional fee for container registration with nice name alias (#148). + +### Changed +- `netmap.AddPeer` method can update `NodeInfo` structures (#146) +- `netmap.Update` allows to redefine any key-value pair of global config (#151) + ## [0.12.0] - 2021-10-15 - Udo (우도, 牛島) NNS update with native container names in container contract. @@ -232,6 +245,7 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[0.12.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.12.0...v0.12.1 [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 diff --git a/README.md b/README.md index 9b181f9..73ed4c4 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Side chain contracts: To compile smart contracts you need: -- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.96.0 +- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.97.3 ## Compilation diff --git a/common/version.go b/common/version.go index 7f69981..20b57c0 100644 --- a/common/version.go +++ b/common/version.go @@ -3,7 +3,7 @@ package common const ( major = 0 minor = 12 - patch = 0 + patch = 1 Version = major*1_000_000 + minor*1_000 + patch )