forked from TrueCloudLab/frostfs-contract
Release v0.14.0 - Geojedo (거제도, 巨濟島)
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
3c7b505f28
commit
f5531561b8
2 changed files with 21 additions and 4 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,6 +1,22 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
Changelog for NeoFS Contract
|
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
|
## [0.13.2] - 2021-12-14
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -294,6 +310,7 @@ Preview4-testnet version of NeoFS contracts.
|
||||||
|
|
||||||
Preview4 compatible 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.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.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
|
[0.13.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.12.2...v0.13.0
|
||||||
|
|
|
@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
|
||||||
|
|
||||||
const (
|
const (
|
||||||
major = 0
|
major = 0
|
||||||
minor = 13
|
minor = 14
|
||||||
patch = 2
|
patch = 0
|
||||||
|
|
||||||
// Versions from which an update should be performed.
|
// 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
|
// These should be used in a group (so prevMinor can be equal to minor if there are
|
||||||
// any migration routines.
|
// any migration routines.
|
||||||
prevMajor = 0
|
prevMajor = 0
|
||||||
prevMinor = 12
|
prevMinor = 13
|
||||||
prevPatch = 2
|
prevPatch = 0
|
||||||
|
|
||||||
Version = major*1_000_000 + minor*1_000 + patch
|
Version = major*1_000_000 + minor*1_000 + patch
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue