Release v0.20.0

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2024-09-30 12:37:12 +03:00
parent d3a85dd028
commit 81853bd242
3 changed files with 16 additions and 6 deletions

View file

@ -8,7 +8,17 @@ Changelog for FrostFS Contract
### Removed ### Removed
### Updated ### Updated
### Fixed ### Fixed
### Updating from v0.18.0
## [0.20.0]
### Added
- Add `ListFullSubjects` method to the frostfsid RPC client (#107)
- Add `ListChainNames` method to the policy contract (#105)
- Add `DeleteRecord` method to the nns contract (#114)
- Emit notification on record changes in nns contract (#109)
### Updated
- neo-go to v0.106.3
## [0.18.0] - 2023-09-14 - Academy of Sciences Glacier ## [0.18.0] - 2023-09-14 - Academy of Sciences Glacier

View file

@ -1 +1 @@
v0.19.1 v0.20.0

View file

@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const ( const (
major = 0 major = 0
minor = 19 minor = 20
patch = 1 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 = 18 prevMinor = 19
prevPatch = 0 prevPatch = 3
Version = major*1_000_000 + minor*1_000 + patch Version = major*1_000_000 + minor*1_000 + patch