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