diff --git a/CHANGELOG.md b/CHANGELOG.md index f163fcf..ae158a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog Changelog for NeoFS Contract +## [0.15.1] - 2022-04-13 + +### Fixed +- Max domain name fragement length (#238) + +### Added +- `netmap.UpdateSnapshotCount` method (#232) +- Notifications of successful container and storage node operations (#236) + +### Changed +- Update neo-go to v0.98.2 (#234) + ## [0.15.0] - 2022-03-23 - Heuksando (흑산도, 黑山島) ### Fixed @@ -339,6 +351,7 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[0.15.1]: https://github.com/nspcc-dev/neofs-contract/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.14.2...v0.15.0 [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 diff --git a/README.md b/README.md index ce0f4a5..19904ef 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,8 @@ ok github.com/nspcc-dev/neofs-contract/tests 0.462s |v0.11.x|[v2.7.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.7.0), [v2.8.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.8.0), [v2.9.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.9.0)| |v0.12.x|[v2.10.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.10.0)| |v0.13.x|[v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0)| +|v0.14.x|[v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0)| +|v0.15.x|[v2.11.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.11.0), [v2.12.0](https://github.com/nspcc-dev/neofs-api/releases/tag/v2.12.0)| # License diff --git a/common/version.go b/common/version.go index aa9a05e..febf27d 100644 --- a/common/version.go +++ b/common/version.go @@ -5,13 +5,13 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std" const ( major = 0 minor = 15 - patch = 0 + patch = 1 // 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 = 14 + prevMinor = 15 prevPatch = 0 Version = major*1_000_000 + minor*1_000 + patch