[#246] Release v0.15.2

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
support/v0.16
Evgenii Stratonikov 2022-06-07 10:37:22 +03:00 committed by fyrchik
parent 53d9a24afa
commit a92ad8b8f0
2 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,14 @@
# Changelog
Changelog for NeoFS Contract
## [0.15.2] - 2022-06-07
### Added
- `container.Count` method (#242)
### Changed
- Update neo-go to v0.99.0 (#246)
## [0.15.1] - 2022-04-13
### Fixed

View File

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