forked from TrueCloudLab/frostfs-contract
Release v0.12.1
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
a9503b5cf8
commit
b57f2ffe6b
3 changed files with 16 additions and 2 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,6 +1,19 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
Changelog for NeoFS Contract
|
Changelog for NeoFS Contract
|
||||||
|
|
||||||
|
## [0.12.1] - 2021-10-19
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Sanity checks for notary enabled environment in container contract (#149)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- NeoFS global configuration parameter `ContainerAliasFee`. This parameter
|
||||||
|
used as additional fee for container registration with nice name alias (#148).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- `netmap.AddPeer` method can update `NodeInfo` structures (#146)
|
||||||
|
- `netmap.Update` allows to redefine any key-value pair of global config (#151)
|
||||||
|
|
||||||
## [0.12.0] - 2021-10-15 - Udo (우도, 牛島)
|
## [0.12.0] - 2021-10-15 - Udo (우도, 牛島)
|
||||||
|
|
||||||
NNS update with native container names in container contract.
|
NNS update with native container names in container contract.
|
||||||
|
@ -232,6 +245,7 @@ Preview4-testnet version of NeoFS contracts.
|
||||||
|
|
||||||
Preview4 compatible contracts.
|
Preview4 compatible contracts.
|
||||||
|
|
||||||
|
[0.12.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.12.0...v0.12.1
|
||||||
[0.12.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.11.0...v0.12.0
|
[0.12.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.11.0...v0.12.0
|
||||||
[0.11.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.1...v0.11.0
|
[0.11.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.1...v0.11.0
|
||||||
[0.10.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.0...v0.10.1
|
[0.10.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.10.0...v0.10.1
|
||||||
|
|
|
@ -36,7 +36,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.96.0
|
- [neo-go](https://github.com/nspcc-dev/neo-go) >= 0.97.3
|
||||||
|
|
||||||
## Compilation
|
## Compilation
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ package common
|
||||||
const (
|
const (
|
||||||
major = 0
|
major = 0
|
||||||
minor = 12
|
minor = 12
|
||||||
patch = 0
|
patch = 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