Release v0.21.0

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2024-12-05 11:38:02 +03:00
parent fe7a767e8f
commit 7e0f9b8b8e
Signed by: fyrchik
SSH key fingerprint: SHA256:m/TTwCzjnRkXgnzEx9X92ccxy1CcVeinOgDb3NPWWmg
3 changed files with 20 additions and 4 deletions

View file

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

View file

@ -1 +1 @@
v0.20.0
v0.21.0

View file

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