[#246] Release v0.15.2
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
53d9a24afa
commit
a92ad8b8f0
2 changed files with 10 additions and 2 deletions
|
@ -1,6 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
Changelog for NeoFS Contract
|
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
|
## [0.15.1] - 2022-04-13
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -5,14 +5,14 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
|
||||||
const (
|
const (
|
||||||
major = 0
|
major = 0
|
||||||
minor = 15
|
minor = 15
|
||||||
patch = 1
|
patch = 2
|
||||||
|
|
||||||
// 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 = 15
|
prevMinor = 15
|
||||||
prevPatch = 0
|
prevPatch = 1
|
||||||
|
|
||||||
Version = major*1_000_000 + minor*1_000 + patch
|
Version = major*1_000_000 + minor*1_000 + patch
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue