Release v0.14.2

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
support/v0.16
Alex Vanin 2022-02-07 19:08:48 +03:00
parent b0872bb54c
commit 5758dadaa9
3 changed files with 14 additions and 3 deletions

View File

@ -1,6 +1,15 @@
# Changelog
Changelog for NeoFS Contract
## [0.14.2] - 2022-02-07
### Fixed
- Remove duplicate records in NNS contract (#196)
### Changed
- Evict container estimations on every put (#215)
- Update neo-go to v0.98.1
## [0.14.1] - 2022-01-24
### Fixed
@ -319,6 +328,8 @@ Preview4-testnet version of NeoFS contracts.
Preview4 compatible contracts.
[0.14.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.1...v0.14.2
[0.14.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.2...v0.14.0
[0.13.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.1...v0.13.2
[0.13.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.0...v0.13.1

View File

@ -37,7 +37,7 @@ Side chain contracts:
To compile smart contracts you need:
- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.0
- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.98.1
## Compilation

View File

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