forked from TrueCloudLab/frostfs-contract
Release v0.20.0
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
d3a85dd028
commit
81853bd242
3 changed files with 16 additions and 6 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -8,7 +8,17 @@ Changelog for FrostFS Contract
|
|||
### Removed
|
||||
### Updated
|
||||
### 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
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
v0.19.1
|
||||
v0.20.0
|
||||
|
|
|
@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
|
|||
|
||||
const (
|
||||
major = 0
|
||||
minor = 19
|
||||
patch = 1
|
||||
minor = 20
|
||||
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 = 18
|
||||
prevPatch = 0
|
||||
prevMinor = 19
|
||||
prevPatch = 3
|
||||
|
||||
Version = major*1_000_000 + minor*1_000 + patch
|
||||
|
||||
|
|
Loading…
Reference in a new issue