Release v0.21.0
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
fe7a767e8f
commit
7e0f9b8b8e
3 changed files with 20 additions and 4 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,6 +1,7 @@
|
|||
# Changelog
|
||||
Changelog for FrostFS Contract
|
||||
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
@ -9,6 +10,21 @@ Changelog for FrostFS Contract
|
|||
### Updated
|
||||
### Fixed
|
||||
|
||||
## [0.21.0]
|
||||
|
||||
### Added
|
||||
- Mention domain name in error messages in the nns contract (#92)
|
||||
- Emit DeleteRecord event on record deletion in the nns contract (#114)
|
||||
|
||||
### Changed
|
||||
- Allow to register TLD automatically (#114)
|
||||
- Use frostfsid claims as a permission to create TLD (#115)
|
||||
- Ensure subject keys are unique (#118, #129)
|
||||
|
||||
### Fixed
|
||||
- Terminate session in `ReadIteratorItems()` (#85)
|
||||
- Declare `nns.getAllRecords` as safe (#131)
|
||||
|
||||
## [0.20.0]
|
||||
|
||||
### Added
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
v0.20.0
|
||||
v0.21.0
|
||||
|
|
|
@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
|
|||
|
||||
const (
|
||||
major = 0
|
||||
minor = 20
|
||||
minor = 21
|
||||
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 = 19
|
||||
prevPatch = 3
|
||||
prevMinor = 20
|
||||
prevPatch = 0
|
||||
|
||||
Version = major*1_000_000 + minor*1_000 + patch
|
||||
|
||||
|
|
Loading…
Reference in a new issue