Release v0.14.2
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
b0872bb54c
commit
5758dadaa9
3 changed files with 14 additions and 3 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,6 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
Changelog for NeoFS Contract
|
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
|
## [0.14.1] - 2022-01-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -319,6 +328,8 @@ Preview4-testnet version of NeoFS contracts.
|
||||||
|
|
||||||
Preview4 compatible 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.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.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
|
[0.13.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.13.0...v0.13.1
|
||||||
|
|
|
@ -37,7 +37,7 @@ Side chain contracts:
|
||||||
|
|
||||||
To compile smart contracts you need:
|
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
|
## Compilation
|
||||||
|
|
||||||
|
|
|
@ -5,13 +5,13 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
|
||||||
const (
|
const (
|
||||||
major = 0
|
major = 0
|
||||||
minor = 14
|
minor = 14
|
||||||
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 = 13
|
prevMinor = 14
|
||||||
prevPatch = 0
|
prevPatch = 0
|
||||||
|
|
||||||
Version = major*1_000_000 + minor*1_000 + patch
|
Version = major*1_000_000 + minor*1_000 + patch
|
||||||
|
|
Loading…
Reference in a new issue