Skip to content

Commit

Permalink
Release v0.12.1
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Vanin <[email protected]>
  • Loading branch information
alexvanin committed Oct 19, 2021
1 parent a9503b5 commit b57f2ff
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
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 (우도, 牛島)

NNS update with native container names in container contract.
Expand Down Expand Up @@ -232,6 +245,7 @@ Preview4-testnet version of NeoFS 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.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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Side chain contracts:

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

Expand Down
2 changes: 1 addition & 1 deletion common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package common
const (
major = 0
minor = 12
patch = 0
patch = 1

Version = major*1_000_000 + minor*1_000 + patch
)

0 comments on commit b57f2ff

Please sign in to comment.