Release v0.14.0 - Geojedo (거제도, 巨濟島)

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
remotes/1719329119662467860/v0.14.1-hotfix
Alex Vanin 2022-01-13 15:28:43 +03:00 committed by Alex Vanin
parent 3c7b505f28
commit f5531561b8
2 changed files with 21 additions and 4 deletions

View File

@ -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

View File

@ -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