diff --git a/CHANGELOG.md b/CHANGELOG.md index ccf8de1..41f0853 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelog Changelog for NeoFS Contract +## [0.11.0] - 2021-09-22 - Mungapdo (문갑도, 文甲島) + +Contract owners are removed, now side chain committee is in charge of contract +update routine. + +### Fixed +- Container contract does not throw PICKITEM panic when trying access + non-existent container, instead panics with user-friendly message (#121) + +### Changed +- NNS contract has been updated to the latest version from Neo upstream (#123) +- Container contract does not throw panic on deleting non-existent container + (#121) +- Migrate methods renamed to Update (#128) +- Contracts now throw panic if update routine fails (#130) +- Side chain committee is able to update contracts (#107) + +### Removed +- Contract owner arguments at deploy stage (#107) + ## [0.10.1] - 2021-07-29 ### Changed @@ -196,6 +216,7 @@ Preview4-testnet version of NeoFS contracts. Preview4 compatible contracts. +[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.0]: https://github.com/nspcc-dev/neofs-contract/compare/v0.9.2...v0.10.0 [0.9.2]: https://github.com/nspcc-dev/neofs-contract/compare/v0.9.1...v0.9.2 diff --git a/README.md b/README.md index f3e484b..8e4404f 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ Remove compiled files with `make clean` or `make mr_proper` command. |:------------------:|:--------------------------:| |v0.9.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)| |v0.10.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)| +|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)| # License diff --git a/common/version.go b/common/version.go index f599460..4dda260 100644 --- a/common/version.go +++ b/common/version.go @@ -2,8 +2,8 @@ package common const ( major = 0 - minor = 10 - patch = 1 + minor = 11 + patch = 0 Version = major*1_000_000 + minor*1_000 + patch )